···5import * as Sentry from "@sentry/nextjs";
67Sentry.init({
8- dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
910 // Adjust this value in production, or use tracesSampler for greater control
11 tracesSampleRate: 0.5,
···5import * as Sentry from "@sentry/nextjs";
67Sentry.init({
8+ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_FRONTEND,
910 // Adjust this value in production, or use tracesSampler for greater control
11 tracesSampleRate: 0.5,
+1-1
apps/status-page/instrumentation-client.ts
···5import * as Sentry from "@sentry/nextjs";
67Sentry.init({
8- dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
910 // Adjust this value in production, or use tracesSampler for greater control
11 tracesSampleRate: 0.5,
···5import * as Sentry from "@sentry/nextjs";
67Sentry.init({
8+ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_FRONTEND,
910 // Adjust this value in production, or use tracesSampler for greater control
11 tracesSampleRate: 0.5,
+1-3
apps/web/instrumentation-client.ts
···45import * as Sentry from "@sentry/nextjs";
67-import { env } from "@/env";
8-9Sentry.init({
10- dsn: env.NEXT_PUBLIC_SENTRY_DSN,
1112 // Adjust this value in production, or use tracesSampler for greater control
13 tracesSampleRate: 0.5,
···45import * as Sentry from "@sentry/nextjs";
6007Sentry.init({
8+ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_FRONTEND,
910 // Adjust this value in production, or use tracesSampler for greater control
11 tracesSampleRate: 0.5,