devpreview / test-sentry

Repository from Github https://github.comdevpreview/test-sentryRepository from Github https://github.comdevpreview/test-sentry

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');

Console

import * as Sentry from "@sentry/browser";
Sentry.init({});
console.log('main');

Console

Solution

Turn off Breadcrumbs console integration

Sentry.init({
    integrations: [new Sentry.Integrations.Breadcrumbs({console: false})]
});

About


Languages

Language:JavaScript 70.4%Language:HTML 18.3%Language:TypeScript 11.3%