Custom 500 page #1411
scottdixon
started this conversation in
Ideas + Feature Requests
Custom 500 page
#1411
Replies: 2 comments 2 replies
-
We need this as well! it implemented already? |
Beta Was this translation helpful? Give feedback.
1 reply
-
It's now possible to add a custom Example of an error handler: // /src/Error.jsx
export default function Error({error}) {
return (
<div>
<h1>An unknown error occured!</h1>
<h2>{error.message}</h2>
<h3>{error.stack}</h3>
</div>
);
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Caught up with @beppek last week, who was after a custom 500 page:
Chatted with @frandiox:
Beta Was this translation helpful? Give feedback.
All reactions