zkt25/z2/shop/controllers/error.js

4 lines
122 B
JavaScript

exports.get404 = (req, res, next) => {
res.status(404).render('404', { pageTitle: 'Page Not Found', path: '/404' });
};