From dcb1347b4a63813e315617cacfaa78efd45454fe Mon Sep 17 00:00:00 2001 From: hyeseon han Date: Sat, 17 Feb 2024 17:56:26 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20port=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy.sh | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index d32d6b8..efc6945 100644 --- a/deploy.sh +++ b/deploy.sh @@ -2,5 +2,5 @@ echo "> FE 배포" -nohup yarn start & +nohup PORT=80 yarn start & diff --git a/package.json b/package.json index 916dcef..7e1154d 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "dev": "next dev", "build": "next build", - "start": "next start", + "start": "export PORT=80 && next start", "lint": "next lint", "storybook": "storybook dev -p 6006", "build-storybook": "storybook build",