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
replaysSessionSampleRate: 0,// 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.
33
36
replaysOnErrorSampleRate: 1.0,// If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
34
-
allowUrls: ["https://*.monkeytype.com"],
35
37
ignoreErrors: [
36
38
/**
37
39
* Thrown when firefox prevents an add-on from refrencing a DOM element that has been removed.
@@ -45,7 +47,46 @@ export function init(): void {
45
47
"NotFoundError: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.",
46
48
"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.",
47
49
"Error: There is no clipping info for given tab",
50
+
"Non-Error promise rejection captured",
51
+
"Object captured as promise rejection",
48
52
],
53
+
beforeSend(event){
54
+
if(envConfig.isDevelopment){
55
+
console.debug(
56
+
"Sentry beforeSend, not sending in development mode",
0 commit comments