open-consul/website/pages/_error.jsx
Jeff Escalante 0d9e72f1dc
initial
2020-04-28 12:52:43 -04:00

14 lines
387 B
JavaScript

import React from 'react'
import ErrorPage from 'next/error'
import bugsnagClient from '../lib/bugsnag'
export default class Page extends React.Component {
static async getInitialProps(ctx) {
if (ctx.err) bugsnagClient.notify(ctx.err)
return ErrorPage.getInitialProps(ctx)
}
render() {
return <ErrorPage statusCode={this.props.statusCode || '¯\\_(ツ)_/¯'} />
}
}