Skip to content

Commit

Permalink
remove ecosystem.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
TdevM committed Dec 31, 2020
1 parent 77b8ea8 commit fe5d04d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Empty file removed ecosystem.config.js
Empty file.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ app.prepare().then(() => {
if (!code) {
res.redirect('/login');
} else {
axios.post(config.backend.token_url, {code: code}).then((response) => {
axios.post(config.dukaan_backend.token_url, {code: code}).then((response) => {
const jwtToken = response.data.jwtToken;
res.cookie('dukaan-token', jwtToken)
res.redirect('/');
Expand Down

0 comments on commit fe5d04d

Please sign in to comment.