Files
klz-cables.com/instrumentation.ts
Marc Mintel 5a5c10ca36
Some checks failed
Build & Deploy KLZ Cables / build-and-deploy (push) Failing after 1m46s
env
2026-01-27 23:43:14 +01:00

29 lines
879 B
TypeScript

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;