Update server port configuration from 8080 to 48080 in both backend and frontend settings.

This commit is contained in:
liu
2026-02-03 10:05:46 +08:00
parent 1c5a44ff71
commit 765d05c0a7
2 changed files with 3 additions and 3 deletions

View File

@@ -6,11 +6,11 @@ export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://localhost:8080',
target: 'http://localhost:48080',
changeOrigin: true,
},
'/ws': {
target: 'ws://localhost:8080',
target: 'ws://localhost:48080',
ws: true,
},
},