This commit is contained in:
Harivansh Rathi 2024-11-28 20:29:26 -05:00
parent 147ab53153
commit 8fd1ca8260
17 changed files with 1111 additions and 412 deletions

View file

@ -1,7 +1,8 @@
import path from 'path';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
@ -9,7 +10,4 @@ export default defineConfig({
'@': path.resolve(__dirname, './src'),
},
},
optimizeDeps: {
exclude: ['lucide-react'],
},
});
})