attempt to impl sentry
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 2m1s

This commit is contained in:
Lee
2024-04-21 18:23:29 +01:00
parent 8d35e7ab0f
commit 2a06a4d338
9 changed files with 486 additions and 9 deletions

19
src/app/global-error.tsx Normal file
View 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>
);
}