initial commit

This commit is contained in:
2025-10-17 12:28:08 -07:00
commit 2b64ace453
26 changed files with 5493 additions and 0 deletions

9
client/vite.config.ts Normal file
View File

@ -0,0 +1,9 @@
import { defineConfig } from "vite";
// https://vite.dev/config/
export default defineConfig({
server: {
port: 8080,
open: true,
},
});