2024-12-09 18:13:52 +01:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
|
import react from "@vitejs/plugin-react";
|
2024-11-15 04:44:20 -05:00
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
|
|
|
|
optimizeDeps: {
|
2024-12-09 18:13:52 +01:00
|
|
|
exclude: ["lucide-react"],
|
2024-11-15 04:44:20 -05:00
|
|
|
},
|
|
|
|
|
});
|