You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/router.tsx
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,27 @@ if (typeof document !== 'undefined') {
53
53
// Session Replay
54
54
replaysSessionSampleRate: 0.1,// This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.
55
55
replaysOnErrorSampleRate: 1.0,// If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
56
+
beforeSend(event){
57
+
// Filter out errors from third-party ad tech scripts (e.g. Publift's
58
+
// Fuse Platform ftUtils.js) that are not actionable by us.
0 commit comments