UNPKG

cabmin

Version:

Simple control panel for Node.js based on OrangeBox

15 lines (14 loc) 271 B
module.exports = function(user) { return { "404": { title: 'Page not found', method: access, showTitle: true, showInMenu: false } }; }; function access(req, res) { res.status(404); res.render('Page not found on the server, check the entered URL.'); }