From 94a1352817761392b8e17bce5592246b5f0df135 Mon Sep 17 00:00:00 2001 From: keyy1315 Date: Tue, 27 May 2025 13:25:01 +0900 Subject: [PATCH] fix: update baseUrl in local config to use localhost --- src/config/config.local.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/config.local.ts b/src/config/config.local.ts index 45db269..ac02c97 100644 --- a/src/config/config.local.ts +++ b/src/config/config.local.ts @@ -1,7 +1,7 @@ import getConfigs from '@/config/config.common' // 환경마다 달라져야 할 변수, 값들을 정의합니다. (여기는 local 환경에 맞는 값을 지정합니다.) -const baseUrl = 'http://172.30.1.65:3000' +const baseUrl = 'http://localhost:3000' const mode = 'local' // 환경마다 달라져야 할 값들을 getConfig 함수에 전달합니다.