Files
react_day_1c/task_2/vite.config.ts
T

11 lines
220 B
TypeScript
Raw Normal View History

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
},
});