Initial commit

This commit is contained in:
Jage9
2026-02-20 08:16:43 -05:00
commit b246c9a7fd
53 changed files with 9538 additions and 0 deletions

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

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite';
const base = process.env.VITE_BASE_PATH || '/';
export default defineConfig({
base,
server: {
host: true,
port: 5173,
proxy: {
'/ws': {
target: 'ws://127.0.0.1:8765',
ws: true,
},
},
},
});