This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/projects/website/src/instrumentation.ts

14 lines
328 B
TypeScript
Raw Normal View History

import * as Sentry from "@sentry/nextjs";
2024-09-30 08:20:48 +00:00
export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") {
await import("../sentry.server.config");
2024-09-30 08:20:48 +00:00
}
if (process.env.NEXT_RUNTIME === "edge") {
await import("../sentry.edge.config");
2024-09-30 08:20:48 +00:00
}
}
export const onRequestError = Sentry.captureRequestError;