Ignore vue3-lazyload error

This commit is contained in:
wvffle 2022-07-31 20:47:30 +00:00 committed by Georg Krause
parent 36ada7a225
commit f52798b0d3
1 changed files with 5 additions and 1 deletions

View File

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