feat: bootstrap React frontend shell with API and realtime wiring

This commit is contained in:
root
2026-05-12 12:58:39 +00:00
parent 642b81564d
commit 196535ba5a
20 changed files with 3699 additions and 1 deletions

7
vite.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})