Unmask Sentry data for app as none of it is sensitive.
This commit is contained in:
@@ -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);
|
||||||
|
@@ -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;
|
||||||
|
Reference in New Issue
Block a user