From 73d0ac2569554bf16d8e491ed5c8f571d34537bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=ED=95=B4=EC=B0=AC=5BVertical=20Service=20Dev1=5D?= Date: Thu, 20 Jun 2024 19:23:09 +0900 Subject: [PATCH] fix : webapp port setting --- src/main/webapp/.env.development | 3 ++- src/main/webapp/.env.development.local | 1 + src/main/webapp/.env.production | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/.env.development b/src/main/webapp/.env.development index 4067d5c..8407151 100644 --- a/src/main/webapp/.env.development +++ b/src/main/webapp/.env.development @@ -1,4 +1,5 @@ -REACT_APP_API=http://localhost:9000 +PORT=9000 +REACT_APP_API= REACT_APP_ENV=development REACT_APP_LOGIN_INFO=neordinary-template-web-info-development GENERATE_SOURCEMAP=false diff --git a/src/main/webapp/.env.development.local b/src/main/webapp/.env.development.local index 44e789e..7c0ac34 100644 --- a/src/main/webapp/.env.development.local +++ b/src/main/webapp/.env.development.local @@ -1,3 +1,4 @@ +PORT=3000 REACT_APP_API=http://localhost:9000 REACT_APP_ENV=local REACT_APP_LOGIN_INFO=neordinary-template-web-info-development diff --git a/src/main/webapp/.env.production b/src/main/webapp/.env.production index 1424f61..8e4be76 100644 --- a/src/main/webapp/.env.production +++ b/src/main/webapp/.env.production @@ -1,4 +1,5 @@ -REACT_APP_API=http://localhost:9000 +PORT=9000 +REACT_APP_API= REACT_APP_ENV=production REACT_APP_LOGIN_INFO=neordinary-template-web-info-production GENERATE_SOURCEMAP=false