Files
klz-cables.com/sentry.client.config.ts
Marc Mintel feedf30be1
Some checks failed
Build & Deploy KLZ Cables / build-and-deploy (push) Failing after 3m30s
env vars
2026-01-26 12:57:06 +01:00

11 lines
166 B
TypeScript

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