Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/instrumentation-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,

// Ignore errors injected by Brave/Firefox iOS browser scripts (third-party browser noise)
ignoreErrors: [/__firefox__/, /DarkReader/],
// Also ignore Battery Status API errors thrown by privacy-focused browsers (e.g. Chrome Mobile 146+ on Android)
ignoreErrors: [/__firefox__/, /DarkReader/, /Battery Status API/],

// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.3,
Expand Down
Loading