Skip to content

Commit

Permalink
HOTFIX: 백엔드 작업을 위해 8080으로 임시 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
DeveloperRyou committed May 20, 2024
1 parent e43b03e commit e7803fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apis/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const getTokenFromLocalStorage = () => {
return accessToken;
};

const eollugageUrl = "https://api.eolluga.com/";
const eollugageUrl = "http://localhost:8080/";
const api = axios.create({
baseURL: eollugageUrl,
headers: {
Expand Down
2 changes: 1 addition & 1 deletion src/assist/buttonwrapper/KakaoLoginButtonWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function KakaoLoginButtonWrapper() {
if (!kakao?.isInitialized()) {
kakao?.init(process.env.NEXT_PUBLIC_KAKAO_JS_KEY);
}
const redirectUri = `https://api.eolluga.com/login/oauth2/code/kakao`;
const redirectUri = `http://localhost:8080/login/oauth2/code/kakao`;
kakao?.Auth?.authorize({
redirectUri,
});
Expand Down

0 comments on commit e7803fb

Please sign in to comment.