All checks were successful
Build & Deploy KLZ Cables / build-and-deploy (push) Successful in 4m48s
11 lines
154 B
TypeScript
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,
|
|
});
|
|
|