mirror of
https://github.com/Snigdha-OS/snigdhaos-web-dev.git
synced 2026-03-17 09:33:58 +01:00
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: '/snigdhaos-web-dev/', // Replace with your repository name
|
|
optimizeDeps: {
|
|
exclude: ['lucide-react'],
|
|
},
|
|
});
|