From b26e1c5d0bca04671d09b42edaf7b47c645c5ded Mon Sep 17 00:00:00 2001 From: Junhui Chen Date: Mon, 7 Jul 2025 15:01:46 +0800 Subject: [PATCH] fix: main deploy port --- scripts/dev_deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev_deploy.sh b/scripts/dev_deploy.sh index 80028f4..363909a 100644 --- a/scripts/dev_deploy.sh +++ b/scripts/dev_deploy.sh @@ -14,7 +14,7 @@ fi # 分支名到端口映射 declare -A PORT_MAP PORT_MAP[v0.4.0_front]="10280:80" -PORT_MAP[main]="80:80" +PORT_MAP[main]="10080:80" PORTS=${PORT_MAP[$BRANCH_NAME]}