From f52798b0d3ada7b80d343d9ae48733db82bd6728 Mon Sep 17 00:00:00 2001 From: wvffle Date: Sun, 31 Jul 2022 20:47:30 +0000 Subject: [PATCH] Ignore vue3-lazyload error --- front/src/init/sentry.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/front/src/init/sentry.ts b/front/src/init/sentry.ts index eae9f1de7..46a3f04f8 100644 --- a/front/src/init/sentry.ts +++ b/front/src/init/sentry.ts @@ -27,7 +27,11 @@ const initSentry = async (app: App, router: Router) => { // Set tracesSampleRate to 1.0 to capture 100% // of transactions for performance monitoring. // We recommend adjusting this value in production - tracesSampleRate: 1.0 + tracesSampleRate: 1.0, + ignoreErrors: [ + // vue3-lazyload throws an error whenever there is a 404 + 'Image failed to load!' + ] }) }