intial commit

This commit is contained in:
Ned Halksworth
2026-05-15 21:36:13 +01:00
commit a9a35cc751
23 changed files with 9588 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
build: {
chunkSizeWarningLimit: 700,
rollupOptions: {
output: {
manualChunks: {
charts: ["recharts"],
motion: ["framer-motion"],
icons: ["lucide-react"],
},
},
},
},
});