-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
23 lines (22 loc) · 791 Bytes
/
vite.config.ts
File metadata and controls
23 lines (22 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
import { createHtmlPlugin } from 'vite-plugin-html';
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
tailwindcss(),
createHtmlPlugin({
inject: {
data: {
title: 'Raam Prathap | Full Stack Developer Portfolio',
description: 'Portfolio of Raam Prathap, a passionate full-stack developer skilled in React, Node.js, and AI/ML integration.',
keywords: 'Raam Prathap, full stack developer, React developer, Node.js developer, AI engineer, web developer portfolio',
author: 'Raam Prathap',
canonical: 'https://raam-prathap.vercel.app/',
}
}
})
]
})