attempt to impl sentry
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 2m1s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 2m1s
This commit is contained in:
19
src/app/global-error.tsx
Normal file
19
src/app/global-error.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
"use client";
|
||||
|
||||
import * as Sentry from "@sentry/nextjs";
|
||||
import Error from "next/error";
|
||||
import { useEffect } from "react";
|
||||
|
||||
export default function GlobalError({ error, reset }: { error: Error & { digest?: string }; reset: () => void }) {
|
||||
useEffect(() => {
|
||||
Sentry.captureException(error);
|
||||
}, [error]);
|
||||
|
||||
return (
|
||||
<html>
|
||||
<body>
|
||||
<h1>Something shit the fan</h1>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user