spee.ch/routes/fallback-routes.js
2018-02-20 15:25:04 -08:00

7 lines
206 B
JavaScript

module.exports = app => {
// a catch-all route if someone visits a page that does not exist
app.use('*', ({ originalUrl, ip }, res) => {
// send response
res.status(404).render('404');
});
};