From 7c724f2430ff3952e431fa91066090840f7a5615 Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Thu, 12 Jun 2025 15:20:25 +0900 Subject: [PATCH] chore: update development environment API URLs - Changed NEXT_PUBLIC_API_URL in .env.development and baseUrl in config.development.ts to point to the new local server IP address for development purposes. --- .env.development | 2 +- src/config/config.development.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.development b/.env.development index 8f3845a..2ef8329 100644 --- a/.env.development +++ b/.env.development @@ -10,7 +10,7 @@ SESSION_PASSWORD="This application is for mobile field research" # 모바일 디바이스로 로컬 서버 확인하려면 자신 IP 주소로 변경 # 다시 로컬에서 개발할때는 localhost로 변경 #route handler -NEXT_PUBLIC_API_URL=http://localhost:3000 +NEXT_PUBLIC_API_URL=http://172.16.56.60:3000 #qsp 로그인 api NEXT_PUBLIC_QSP_API_URL=http://121.168.9.37:8080 diff --git a/src/config/config.development.ts b/src/config/config.development.ts index 70765ec..665bc9b 100644 --- a/src/config/config.development.ts +++ b/src/config/config.development.ts @@ -1,7 +1,7 @@ import getConfigs from '@/config/config.common' // 환경마다 달라져야 할 변수, 값들을 정의합니다. (여기는 development 환경에 맞는 값을 지정합니다.) -const baseUrl = 'http://1.248.227.176:3000' +const baseUrl = 'http://172.16.56.60:3000' const mode = 'development' // 환경마다 달라져야 할 값들을 getConfig 함수에 전달합니다.