import * as Sentry from '@sentry/nextjs' import type {NextPageContext} from 'next' import NextErrorComponent from 'next/error' type ErrorProps = { statusCode: number } export default function CustomError({statusCode}: ErrorProps) { return } CustomError.getInitialProps = async (ctx: NextPageContext) => { await Sentry.captureUnderscoreErrorException(ctx) return NextErrorComponent.getInitialProps(ctx) }