Unmask Sentry data for app as none of it is sensitive.

This commit is contained in:
2025-09-20 14:41:28 -05:00
parent 1ee287b26c
commit 14017faa07
2 changed files with 4 additions and 4 deletions

View File

@@ -53,9 +53,5 @@ const sentryConfig = {
reactComponentAnnotation: { reactComponentAnnotation: {
enabled: true, enabled: true,
}, },
replayIntegration: {
maskAllText: false,
blockAllMedia: false,
},
}; };
export default withSentryConfig(nextConfig, sentryConfig); export default withSentryConfig(nextConfig, sentryConfig);

View File

@@ -14,5 +14,9 @@ Sentry.init({
replaysOnErrorSampleRate: 1.0, replaysOnErrorSampleRate: 1.0,
debug: false, debug: false,
}); });
Sentry.replayIntegration({
maskAllText: false,
blockAllMedia: false,
});
// `captureRouterTransitionStart` is available from SDK version 9.12.0 onwards // `captureRouterTransitionStart` is available from SDK version 9.12.0 onwards
export const onRouterTransitionStart = Sentry.captureRouterTransitionStart; export const onRouterTransitionStart = Sentry.captureRouterTransitionStart;