From 4fe32474dfd10d5f5ef03ab21ae3db0efa203cff Mon Sep 17 00:00:00 2001 From: gibbyb Date: Sat, 20 Sep 2025 15:21:02 -0500 Subject: [PATCH] fix --- apps/next/src/instrumentation-client.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/next/src/instrumentation-client.ts b/apps/next/src/instrumentation-client.ts index 6ef7c9e..b54d701 100644 --- a/apps/next/src/instrumentation-client.ts +++ b/apps/next/src/instrumentation-client.ts @@ -3,7 +3,12 @@ import * as Sentry from '@sentry/nextjs'; Sentry.init({ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN!, - integrations: [Sentry.replayIntegration()], + integrations: [ + Sentry.replayIntegration({ + maskAllText: false, + blockAllMedia: false, + }), + ], // https://docs.sentry.io/platforms/javascript/guides/nextjs/configuration/options/#sendDefaultPii sendDefaultPii: true, // https://docs.sentry.io/platforms/javascript/configuration/options/#traces-sample-rate