Files
wireframev5_frontend/vite.config.ts
T

11 lines
223 B
TypeScript
Raw Normal View History

2025-01-29 23:49:27 +01:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
optimizeDeps: {
2025-01-30 18:43:45 +01:00
// exclude: ['lucide-react'],
2025-01-29 23:49:27 +01:00
},
});