8 lines
283 B
TypeScript
8 lines
283 B
TypeScript
import type { Instrumentation } from 'next';
|
|
import * as Sentry from '@sentry/nextjs';
|
|
|
|
export const register = async () => await import('./sentry.server.config');
|
|
export const onRequestError: Instrumentation.onRequestError = (...args) => {
|
|
Sentry.captureRequestError(...args);
|
|
};
|