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!' + ] }) }