consul/website/pages/_error.jsx

16 lines
399 B
React
Raw Normal View History

2020-05-19 14:32:38 -04:00
import NotFound from './404'
import Bugsnag from '@hashicorp/nextjs-scripts/lib/bugsnag'
2020-04-06 16:27:35 -04:00
2020-05-19 14:32:38 -04:00
function Error({ statusCode }) {
console.log('this is working')
return <NotFound statusCode={statusCode} />
2020-04-06 16:27:35 -04:00
}
2020-05-19 14:32:38 -04:00
Error.getInitialProps = ({ res, err }) => {
if (err) Bugsnag.notify(err)
const statusCode = res ? res.statusCode : err ? err.statusCode : 404
return { statusCode }
}
export default Error