mirror of
https://github.com/bodyrep/DemoApp.git
synced 2026-01-25 14:43:00 +00:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
//404 catch all
|
|
|
|
module.exports = function(app) {
|
|
|
|
//The 404 Route (ALWAYS Keep this as the last route)
|
|
app.get('*', function(req, res){
|
|
console.log("oook 404 " + req );
|
|
res.send('Not Found', 404);
|
|
});
|
|
|
|
};
|