-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathvite.config.js
More file actions
17 lines (15 loc) · 431 Bytes
/
vite.config.js
File metadata and controls
17 lines (15 loc) · 431 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
import path from 'path'
import { fileURLToPath } from 'url'
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})