20 lines
332 B
JavaScript
20 lines
332 B
JavaScript
"use client";
|
|
|
|
import * as Sentry from "@sentry/nextjs";
|
|
import Error from "next/error";
|
|
import { useEffect } from "react";
|
|
|
|
export default function GlobalError({ error }) {
|
|
useEffect(() => {
|
|
Sentry.captureException(error);
|
|
}, [error]);
|
|
|
|
return (
|
|
<html>
|
|
<body>
|
|
<Error />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|