Files
klz-cables.com/sentry.client.config.ts
Marc Mintel 3b493abb3d
All checks were successful
Build & Deploy KLZ Cables / build-and-deploy (push) Successful in 3m34s
env
2026-01-27 00:50:52 +01:00

11 lines
154 B
TypeScript

import * as Sentry from '@sentry/nextjs';
const dsn = process.env.SENTRY_DSN;
Sentry.init({
dsn,
enabled: Boolean(dsn),
tracesSampleRate: 0,
});