Skip to content

Commit

Permalink
fix: 카카오 리다이렉션 URL 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minh0518 committed May 15, 2024
1 parent ba25714 commit b72591a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: '',
};

0 comments on commit b72591a

Please sign in to comment.