Initial commit, very WIP and the content is practically garbage

This commit is contained in:
2025-07-06 22:06:30 -05:00
commit 571259122e
29 changed files with 4814 additions and 0 deletions

24
vite.config.ts Normal file
View File

@@ -0,0 +1,24 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [
react(),
],
build: {
rollupOptions: {
external: ["react", "react-dom"],
output: {
globals: {
react: "React",
"react-dom": "ReactDOM",
},
},
},
},
css: {
modules: {
localsConvention: "camelCase",
},
},
});