From 96b5e39a58afc075a83e2f597d3e79f15de0c91d Mon Sep 17 00:00:00 2001 From: nalpari Date: Fri, 13 Jun 2025 12:25:46 +0900 Subject: [PATCH] chore: update baseUrl for production environment - Commented out the previous production baseUrl and set a new baseUrl to point to the local server IP address for production configuration. - Ensured consistency in environment-specific configurations. --- src/config/config.production.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/config.production.ts b/src/config/config.production.ts index 2965b70..bd35fc2 100644 --- a/src/config/config.production.ts +++ b/src/config/config.production.ts @@ -1,7 +1,8 @@ import getConfigs from '@/config/config.common' // 환경마다 달라져야 할 변수, 값들을 정의합니다. (여기는 production 환경에 맞는 값을 지정합니다.) -const baseUrl = 'https://hanasysfield.jp' +// const baseUrl = 'https://hanasysfield.jp' +const baseUrl = 'http://172.16.56.55:3000' const mode = 'production' // 환경마다 달라져야 할 값들을 getConfig 함수에 전달합니다.