sw-jobs-frontend/src/instrumentation.ts
hook-lord 0dd5db3988
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m40s
added sentry
2024-12-09 10:10:02 +01:00

14 lines
328 B
TypeScript

import * as Sentry from '@sentry/nextjs';
export async function register() {
if (process.env.NEXT_RUNTIME === 'nodejs') {
await import('../sentry.server.config');
}
if (process.env.NEXT_RUNTIME === 'edge') {
await import('../sentry.edge.config');
}
}
export const onRequestError = Sentry.captureRequestError;