initial commit

This commit is contained in:
2026-03-11 16:56:28 -04:00
commit caa9d40cba
11 changed files with 4415 additions and 0 deletions

17
vite.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from "vite";
export default defineConfig({
build: {
rollupOptions: {
output: {
manualChunks: {
three: ["three"],
},
},
},
},
server: {
host: "0.0.0.0",
port: 4173,
},
});