Skip to content

Commit

Permalink
fix: redirect to localhost (proxified)
Browse files Browse the repository at this point in the history
  • Loading branch information
manekinekko committed Jun 30, 2020
1 parent b0da97a commit 378b21c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app_auth_complete/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = async function (context, req) {
},
],
headers: {
location: `//localhost:4200/profile`,
location: `//localhost/profile`,
},
});
};
2 changes: 1 addition & 1 deletion app_auth_logout_complete/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = async function (context, req) {
},
],
headers: {
location: `//localhost:4200/`,
location: `//localhost/`,
},
});
};

0 comments on commit 378b21c

Please sign in to comment.