From 1ee287b26c52f023b9c8bd1f1bc6f32abc550f32 Mon Sep 17 00:00:00 2001 From: gibbyb Date: Sat, 20 Sep 2025 10:02:27 -0500 Subject: [PATCH] add sentry config to see text and media --- apps/next/next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/next/next.config.js b/apps/next/next.config.js index a4c40b7..869daf3 100644 --- a/apps/next/next.config.js +++ b/apps/next/next.config.js @@ -53,5 +53,9 @@ const sentryConfig = { reactComponentAnnotation: { enabled: true, }, + replayIntegration: { + maskAllText: false, + blockAllMedia: false, + }, }; export default withSentryConfig(nextConfig, sentryConfig);