Files
mintel.me/apps/web/sentry.edge.config.ts
2026-02-24 16:22:08 +01:00

12 lines
233 B
TypeScript

import * as Sentry from "@sentry/nextjs";
const dsn = process.env.SENTRY_DSN;
const isProd = process.env.NODE_ENV === "production";
Sentry.init({
dsn,
enabled: isProd && Boolean(dsn),
tracesSampleRate: 1,
debug: false,
});