test-sentry
Testing repository for getsentry/sentry-javascript#1638
After init Sentry source maps is broken.
For example:
import * as Sentry from "@sentry/browser";
//Sentry.init({});
console.log('main');
import * as Sentry from "@sentry/browser";
Sentry.init({});
console.log('main');
Solution
Turn off Breadcrumbs console integration
Sentry.init({
integrations: [new Sentry.Integrations.Breadcrumbs({console: false})]
});

