Skip to content

Commit

Permalink
revert server.js changes
Browse files Browse the repository at this point in the history
  • Loading branch information
osamasayed committed Dec 1, 2023
1 parent e1e0227 commit 5337b8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ app.prepare().then(() => {
const parsedUrl = parse(req.url, true);
handle(req, res, parsedUrl);
},
).listen(3005, (err) => {
).listen(3000, (err) => {
if (err) throw err;
console.log('> Server started on https://localhost:3005');
console.log('> Server started on https://localhost:3000');
});
});

0 comments on commit 5337b8e

Please sign in to comment.