修复日程提醒功能

This commit is contained in:
2026-07-20 11:41:39 +08:00
parent 7ab6958538
commit f00ba9f9cc
19 changed files with 1735 additions and 1725 deletions
+3 -3
View File
@@ -29,14 +29,14 @@ export default defineConfig({
server: {
host: "127.0.0.1",
port: 4000,
// 开发时前端在 5000,接口走相对路径 /platform/*、/backend/*,转发到本地 Go(当前 httpport=8081
// 开发时前端在 4000,接口走相对路径 /platform/*、/backend/*,转发到本地 Go(当前 httpport=9000
proxy: {
"/platform": {
target: "http://127.0.0.1:8081",
target: "http://127.0.0.1:9000",
changeOrigin: true,
},
"/backend": {
target: "http://127.0.0.1:8081",
target: "http://127.0.0.1:9000",
changeOrigin: true,
},
},