changed the 404 msg

This commit is contained in:
Kfir Dayan 2023-04-03 20:06:02 +03:00
parent 3a7803ef2b
commit 52c8516a1e

View file

@ -63,5 +63,5 @@ webServer.listen(process.env.PORT, () => {
})
webServer.use(function (req, res, next) {
res.status(404).send("Sorry can't find that!")
res.status(404).send("This is not the page you are looking for...")
})