Skip to content
Snippets Groups Projects
Commit 26eae9e1 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

webapp/assets/sentry: Do not report ChunkLoaderError issues to Sentry

Those are not of interest and generate a lot of noises in swh-web dashboard
from Sentry Web UI.
parent 9fddd165
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ import * as Sentry from '@sentry/browser';
// loaded.
export function sentryInit(sentryDsn) {
if (sentryDsn !== undefined) {
Sentry.init({dsn: sentryDsn});
Sentry.init({dsn: sentryDsn, ignoreErrors: ['ChunkLoadError']});
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment