Skip to content

Commit

Permalink
chore: ignore browser extensions error from Sentry (#4095)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Jul 28, 2023
1 parent 127b69f commit 985c635
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export const initSentry = (app, router) => {
trackComponents: true
},
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0
replaysOnErrorSampleRate: 1.0,
denyUrls: [/extensions\//i, /^chrome:\/\//i, /^chrome-extension:\/\//i]
});
};

Expand Down

1 comment on commit 985c635

@vercel
Copy link

@vercel vercel bot commented on 985c635 Jul 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.