Skip to content

Commit

Permalink
Merge pull request #14 from hw-coconote/feat/HC-159
Browse files Browse the repository at this point in the history
baseUrl
  • Loading branch information
jiho3634 authored Oct 2, 2024
2 parents e9d2884 + 73825ce commit 68579d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VUE_APP_BASE_URL=https://server.coconote.site
4 changes: 2 additions & 2 deletions src/views/LoginPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
export default {
methods: {
loginWithGoogle() {
window.location.href = "http://localhost:8080/oauth2/authorization/google";
window.location.href = `${process.env.VUE_APP_BASE_URL}/oauth2/authorization/google`;
},
loginWithKakao() {
window.location.href = "http://localhost:8080/oauth2/authorization/kakao";
window.location.href = `${process.env.VUE_APP_BASE_URL}/oauth2/authorization/kakao`;
},
},
};
Expand Down

0 comments on commit 68579d9

Please sign in to comment.