feat: add management web console

This commit is contained in:
Yoilun
2026-04-27 11:28:57 +08:00
parent b3672c564a
commit c4f9dab049
17 changed files with 2051 additions and 7 deletions

14
web/vite.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from "vite";
export default defineConfig({
server: {
host: "127.0.0.1",
port: 23000,
proxy: {
"/api": {
target: "http://127.0.0.1:19080",
changeOrigin: true,
},
},
},
});