chore: set backend default port to 9080

This commit is contained in:
Yoilun
2026-04-27 10:08:36 +08:00
parent d4e351df71
commit 992e243177
6 changed files with 76 additions and 30 deletions

View File

@@ -3,7 +3,7 @@ import vue from "@vitejs/plugin-vue";
import { resolve } from "path";
const devPort = Number(process.env.VITE_DEV_PORT || 13000);
const apiTarget = process.env.VITE_API_PROXY_TARGET || "http://localhost:8080";
const apiTarget = process.env.VITE_API_PROXY_TARGET || "http://localhost:9080";
export default defineConfig({
plugins: [vue()],