500
Server Error
{/* eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing */}
{message || 'Sorry, something crashed on the server.'}
{
(DEPLOYMENT_MODE !== 'production' || Astro.locals.user?.admin) && (
{error instanceof Error
? error.message
: error === undefined
? // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
message || 'undefined'
: typeof error === 'object'
? JSON.stringify(error, null, 2)
: String(error as unknown)}
)
}