feat: add WonderQ admin UI

This commit is contained in:
duanshuwen
2026-06-30 12:02:44 +08:00
parent 282b90b622
commit 50e9b32806
160 changed files with 4893 additions and 137 deletions

16
vite.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5601,
proxy: {
"/api": {
target: "http://localhost:4000",
changeOrigin: true,
},
},
},
});