Ignore vue3-lazyload error

environments/review-front-deve-otr6gc/deployments/13419
wvffle 2022-07-31 20:47:30 +00:00 zatwierdzone przez Georg Krause
rodzic 36ada7a225
commit f52798b0d3
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

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