This commit is contained in:
2026-01-07 10:33:09 +00:00
parent c2559bbc93
commit 13745ac89e
42 changed files with 4526 additions and 0 deletions

10
web/vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: { port: 5173 },
});