Skip to content

Commit

Permalink
chore: don't mask text in sentry replays
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoesbergen committed May 3, 2024
1 parent 11f753f commit 2dfff1c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ function initSentry() {
dsn: import.meta.env.VITE_SENTRY_DSN,
integrations: [
Sentry.browserTracingIntegration(),
Sentry.replayIntegration(),
Sentry.replayIntegration({
maskAllText: false,
}),
],
// Performance Monitoring
tracesSampleRate: Number.parseFloat(
Expand Down

0 comments on commit 2dfff1c

Please sign in to comment.