Skip to content

Commit

Permalink
change domain name to tobywinz
Browse files Browse the repository at this point in the history
  • Loading branch information
tsungchiehchen committed Jan 18, 2024
1 parent c2970fe commit 1566b0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/vue/core/LoginView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default {
return
}
fetch("http://127.0.0.1:3033/login", {
fetch("http://tobywinz/login", {
method: "POST",
body: JSON.stringify(userData),
headers: {
Expand All @@ -133,7 +133,7 @@ export default {
sessionStorage.setItem("access_token", json['access_token']);
sessionStorage.setItem("refresh_token", json['refresh_token']);
try {
const updateResponse = await fetch("http://127.0.0.1:3033/updateResume", {
const updateResponse = await fetch("http://tobywinz/updateResume", {
method: "POST",
headers: {
"Content-type": "application/json; charset=UTF-8",
Expand Down Expand Up @@ -171,7 +171,7 @@ export default {
password: this.password
};
fetch("http://127.0.0.1:3033/register", {
fetch("http://tobywinz/register", {
method: "POST",
headers: {
"Content-Type": "application/json; charset=UTF-8"
Expand Down

0 comments on commit 1566b0f

Please sign in to comment.