We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You have pageNotFound handler which is at all routes '/*' and will close the request before your error handling middleware.
pageNotFound
'/*'
Also, even if you didn't have that, your error handling middleware tries to render a view called 'error' which you is not in your views folder... https://github.com/FACG2/TBH/blob/master/src/app.js#L30
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You have
pageNotFound
handler which is at all routes'/*'
and will close the request before your error handling middleware.Also, even if you didn't have that, your error handling middleware tries to render a view called 'error' which you is not in your views folder...
https://github.com/FACG2/TBH/blob/master/src/app.js#L30
The text was updated successfully, but these errors were encountered: