1.优化地区csv加载机制 2.修复数据库监控无法访问问题 3.增加了登录状态保存 4.针对session存储机制做适配 5.文件扫描机制优化,并行扫描速度更快

This commit is contained in:
2026-06-30 18:21:30 +08:00
parent 694cd8d3ee
commit 3c0aa59691
17 changed files with 175 additions and 133 deletions
+7 -1
View File
@@ -59,7 +59,13 @@ export default (config: UserConfig): UserConfigExport => {
open: false, // 自动启动浏览器
host: "0.0.0.0", // localhost
port: 8001, // 端口号
hmr: { overlay: false }
hmr: { overlay: false },
proxy: {
"/system-admin": {
target: "http://192.168.2.151:48080",
changeOrigin: true
}
}
}
});
};