Unify ports to 9002/9000 and fix report grouping sort, weigh summary in wan

This commit is contained in:
2026-08-20 15:33:56 +08:00
parent 8099ebae0a
commit c7a902833c
6 changed files with 42 additions and 15 deletions
+4 -4
View File
@@ -11,18 +11,18 @@ export default defineConfig({
},
server: {
host: '0.0.0.0',
port: 5173,
port: 9000,
proxy: {
'/api': {
target: 'http://localhost:5246',
target: 'http://localhost:9002',
changeOrigin: true
},
'/uploads': {
target: 'http://localhost:5246',
target: 'http://localhost:9002',
changeOrigin: true
},
'/mobile-upload.html': {
target: 'http://localhost:5246',
target: 'http://localhost:9002',
changeOrigin: true
}
}