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