From a62739be8f9a86a6241b933940783d54e5f69599 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 3 Jul 2023 12:33:43 -0400 Subject: [PATCH] chore: Add allowUrls Sentry configuration to reduce spurious extension errors --- app/utils/sentry.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/utils/sentry.ts b/app/utils/sentry.ts index ef862d045..2af823c4f 100644 --- a/app/utils/sentry.ts +++ b/app/utils/sentry.ts @@ -9,6 +9,7 @@ export function initSentry(history: History) { environment: env.ENVIRONMENT, release: env.RELEASE, tunnel: env.SENTRY_TUNNEL, + allowUrls: [env.URL, env.CDN_URL, env.COLLABORATION_URL], integrations: [ new Integrations.BrowserTracing({ routingInstrumentation: Sentry.reactRouterV5Instrumentation(history),