import * as Sentry from '@sentry/nextjs'; import { getServerAppServices } from '@/lib/services/create-services.server'; /** * Next.js will call this on boot for the active runtime. * * NEXT_RUNTIME is an environment variable automatically set by Next.js: * - 'nodejs' when running in the standard Node.js runtime * - 'edge' when running in the Edge runtime (e.g. Middleware, Edge API Routes) */ export async function register() { // Initialize server services on boot if (process.env.NEXT_RUNTIME === 'nodejs') { getServerAppServices(); } if (process.env.NEXT_RUNTIME === 'nodejs') { await import('./sentry.server.config'); } if (process.env.NEXT_RUNTIME === 'edge') { await import('./sentry.edge.config'); } } // Capture errors from Server Components, middleware and route handlers. export const onRequestError = Sentry.captureRequestError;