From b72591afe31785003d4a49f398e9b31c681af116 Mon Sep 17 00:00:00 2001 From: minh0518 Date: Wed, 15 May 2024 21:48:05 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=B9=B4=EC=B9=B4=EC=98=A4=20=EB=A6=AC?= =?UTF-8?q?=EB=8B=A4=EC=9D=B4=EB=A0=89=EC=85=98=20URL=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/path.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/path.ts b/src/config/path.ts index 7e06dac..1a3d2de 100644 --- a/src/config/path.ts +++ b/src/config/path.ts @@ -2,7 +2,7 @@ export const SOCIAL_ACCESS_URL = { KAKAO: process.env.NODE_ENV === 'development' ? `https://kauth.kakao.com/oauth/authorize?response_type=code&client_id=${process.env.NEXT_PUBLIC_KAKAO_API_KEY}&redirect_uri=${process.env.NEXT_PUBLIC_ROUTE_HANDLER}/accounts/login/process` - : `https://kauth.kakao.com/oauth/authorize?response_type=code&client_id=${process.env.NEXT_PUBLIC_KAKAO_API_KEY}&redirect_uri=${process.env.NEXT_PUBLIC_BASE_URL_PROD}/accounts/login/process`, + : `https://kauth.kakao.com/oauth/authorize?response_type=code&client_id=${process.env.NEXT_PUBLIC_KAKAO_API_KEY}&redirect_uri=${process.env.NEXT_PUBLIC_CLIENT_PROD_URL}/accounts/login/process`, NAVER: '', GOOGLE: '', };