···55import * as Sentry from "@sentry/nextjs";
6677Sentry.init({
88- dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
88+ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_FRONTEND,
991010 // Adjust this value in production, or use tracesSampler for greater control
1111 tracesSampleRate: 0.5,
+1-1
apps/status-page/instrumentation-client.ts
···55import * as Sentry from "@sentry/nextjs";
6677Sentry.init({
88- dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
88+ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_FRONTEND,
991010 // Adjust this value in production, or use tracesSampler for greater control
1111 tracesSampleRate: 0.5,
+1-3
apps/web/instrumentation-client.ts
···4455import * as Sentry from "@sentry/nextjs";
6677-import { env } from "@/env";
88-97Sentry.init({
1010- dsn: env.NEXT_PUBLIC_SENTRY_DSN,
88+ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_FRONTEND,
1191210 // Adjust this value in production, or use tracesSampler for greater control
1311 tracesSampleRate: 0.5,