From 14017faa0779f44d3e8f77902c3167fa49b4a5ba Mon Sep 17 00:00:00 2001 From: gibbyb Date: Sat, 20 Sep 2025 14:41:28 -0500 Subject: [PATCH] Unmask Sentry data for app as none of it is sensitive. --- apps/next/next.config.js | 4 ---- apps/next/src/instrumentation-client.ts | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/next/next.config.js b/apps/next/next.config.js index 869daf3..a4c40b7 100644 --- a/apps/next/next.config.js +++ b/apps/next/next.config.js @@ -53,9 +53,5 @@ const sentryConfig = { reactComponentAnnotation: { enabled: true, }, - replayIntegration: { - maskAllText: false, - blockAllMedia: false, - }, }; export default withSentryConfig(nextConfig, sentryConfig); diff --git a/apps/next/src/instrumentation-client.ts b/apps/next/src/instrumentation-client.ts index 6ef7c9e..4027fc4 100644 --- a/apps/next/src/instrumentation-client.ts +++ b/apps/next/src/instrumentation-client.ts @@ -14,5 +14,9 @@ Sentry.init({ replaysOnErrorSampleRate: 1.0, debug: false, }); +Sentry.replayIntegration({ + maskAllText: false, + blockAllMedia: false, +}); // `captureRouterTransitionStart` is available from SDK version 9.12.0 onwards export const onRouterTransitionStart = Sentry.captureRouterTransitionStart;