mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-02 08:40:53 +03:00
92f301e4ce
This pull request updates the Sentry configuration file and adds a new ignore file. The changes include: - Updating the `SENTRY_DSN` environment variable to `NEXT_PUBLIC_SENTRY_DSN` - Updating the `@sentry/nextjs` package to version `7.102.1` - Adding a new ignore file `.sentryclirc`
18 lines
580 B
JavaScript
18 lines
580 B
JavaScript
import * as Sentry from "@sentry/nextjs";
|
|
import Error from "next/error";
|
|
|
|
const CustomErrorComponent = (props) => {
|
|
return <Error statusCode={props.statusCode} />;
|
|
};
|
|
|
|
CustomErrorComponent.getInitialProps = async (contextData) => {
|
|
// In case this is running in a serverless function, await this in order to give Sentry
|
|
// time to send the error before the lambda exits
|
|
await Sentry.captureUnderscoreErrorException(contextData);
|
|
|
|
// This will contain the status code of the response
|
|
return Error.getInitialProps(contextData);
|
|
};
|
|
|
|
export default CustomErrorComponent;
|