* fix: server side error handling * fix: push only unknown 500 errors to sentry * fix: use in-house onerror in favor of errorHandling middleware * fix: split error template into dev and prod envs * fix: check Error instance * fix: error routes in test env * fix: review comments * Remove koa-onerror Co-authored-by: Tom Moor <tom.moor@gmail.com>
30 lines
573 B
HTML
30 lines
573 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Error - //inject-status//</title>
|
|
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
|
|
<style>
|
|
body {
|
|
padding: 50px 80px;
|
|
font: 14px "Helvetica Neue", Helvetica, sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2em;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
pre {
|
|
font-size: .8em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="error">
|
|
<h1>Error</h1>
|
|
<p>Looks like something broke!</p>
|
|
</div>
|
|
</body>
|
|
</html>
|