From 4adbe639f371b35c5817469608dbc79427903c9e Mon Sep 17 00:00:00 2001 From: Gareth Fuller Date: Thu, 6 Jul 2023 14:10:59 +0100 Subject: [PATCH] chore: Igrnore specifc sentry error --- src/plugins/sentry.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/sentry.ts b/src/plugins/sentry.ts index 0d71068d94..467f7461f0 100644 --- a/src/plugins/sentry.ts +++ b/src/plugins/sentry.ts @@ -42,6 +42,7 @@ export default function initSentry(app: App) { tracesSampleRate: 1.0, environment: import.meta.env.MODE, release: `frontend-v2@${version}`, + ignoreErrors: ['error loading dynamically imported module'], // https://docs.sentry.io/platforms/javascript/configuration/filtering/#using-platformidentifier-nameignore-errors- }); } }