Build seamless game loop prototype

This commit is contained in:
2026-05-30 21:05:31 -04:00
parent e14e43da42
commit 7d9095b933
132 changed files with 23006 additions and 5652 deletions

10
vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [tailwindcss()],
esbuild: {
jsx: "automatic",
jsxImportSource: "react",
},
});