frontend v1

This commit is contained in:
2026-02-11 17:47:18 +08:00
parent 0ad07402f2
commit 0caf45e360
17 changed files with 2775 additions and 0 deletions

10
frontend/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,
},
});