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
tracesSampleRate: 1.0,// Capture 100% of the transactions
@@ -19,6 +29,20 @@ export function init(): void {
19
29
// Session Replay
20
30
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.
21
31
replaysOnErrorSampleRate: 1.0,// If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
32
+
allowUrls: ["https://*.monkeytype.com"],
33
+
ignoreErrors: [
34
+
/**
35
+
* Thrown when firefox prevents an add-on from refrencing a DOM element that has been removed.
36
+
* This can also be filtered by enabling the browser extension inbound filter
37
+
*/
38
+
"TypeError: can't access dead object",
39
+
/**
40
+
* React internal error thrown when something outside react modifies the DOM
41
+
* This is usually because of a browser extension or Chrome's built-in translate
42
+
*/
43
+
"NotFoundError: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.",
44
+
"NotFoundError: Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node.",
0 commit comments