Render the nice 404 page for /early-access in non-local envs

This commit is contained in:
James M. Greene 2020-11-17 18:29:07 -06:00
Родитель d402a60833
Коммит d6fcc369ea
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,6 @@
module.exports = function earlyAccessContext (req, res, next) {
if (process.env.NODE_ENV === 'production') {
return res.status(404).end()
return next(404)
}
const earlyAccessPages = req.context.pages