Some checks failed
Build & Deploy KLZ Cables / deploy (push) Failing after 2m21s
12 lines
264 B
TypeScript
12 lines
264 B
TypeScript
import * as Sentry from '@sentry/nextjs';
|
|
|
|
const dsn = process.env.NEXT_PUBLIC_SENTRY_DSN || 'https://c10957d0182245b1a2a806ac2d34a197@klz-cables.com/errors/1';
|
|
|
|
Sentry.init({
|
|
dsn,
|
|
tunnel: '/errors/tunnel',
|
|
enabled: Boolean(dsn),
|
|
tracesSampleRate: 0,
|
|
});
|
|
|