HF-Spaces / vite.config.ts
AntDX316
updated
4d0d400
raw
history blame contribute delete
220 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
optimizeDeps: {
exclude: ['lucide-react'],
},
});