Add sentry ignore rule

This commit is contained in:
Elio Struyf
2021-12-16 14:02:57 +01:00
parent 2d85b0a554
commit 6ef63da973
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -26,7 +26,8 @@ if (elm) {
integrations: [new Integrations.BrowserTracing()],
tracesSampleRate: 0, // No performance tracing required
release: version || "",
environment: environment || ""
environment: environment || "",
ignoreErrors: ['ResizeObserver loop limit exceeded']
});
}
+2 -1
View File
@@ -27,7 +27,8 @@ Sentry.init({
integrations: [new Integrations.BrowserTracing()],
tracesSampleRate: 0, // No performance tracing required
release: version || "",
environment: environment || ""
environment: environment || "",
ignoreErrors: ['ResizeObserver loop limit exceeded']
});
declare const acquireVsCodeApi: <T = unknown>() => {