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