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
On production static server we have custom pages for 404 and 500 error:
https://dev.slowreader.app/500.html https://dev.slowreader.app/404.html
But we don’t have such for self-hosted version when assets are served from Logux server.
@logux/server
assets/404.html
assets/500.html
server/module/assets.ts
<style>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On production static server we have custom pages for 404 and 500 error:
https://dev.slowreader.app/500.html
https://dev.slowreader.app/404.html
But we don’t have such for self-hosted version when assets are served from Logux server.
@logux/server
with an API to define HTML of 404 and 500 page and use them in HTTP server.assets/404.html
andassets/500.html
and pass content to that new API inserver/module/assets.ts
(if assets was enabled).<style>
of that pages.The text was updated successfully, but these errors were encountered: