27 lines
845 B
TypeScript
27 lines
845 B
TypeScript
import * as BuildConfig from 'soapbox/build_config';
|
|
|
|
export const start = (): void => {
|
|
Promise.all([
|
|
import(/* webpackChunkName: "error" */'@sentry/react'),
|
|
import(/* webpackChunkName: "error" */'@sentry/tracing'),
|
|
]).then(([Sentry, { Integrations: Integrations }]) => {
|
|
Sentry.init({
|
|
dsn: BuildConfig.SENTRY_DSN,
|
|
environment: BuildConfig.NODE_ENV,
|
|
debug: false,
|
|
integrations: [new Integrations.BrowserTracing()],
|
|
|
|
// We recommend adjusting this value in production, or using tracesSampler
|
|
// for finer control
|
|
tracesSampleRate: 1.0,
|
|
});
|
|
}).catch(console.error);
|
|
};
|
|
|
|
export const captureException = (error: Error): void => {
|
|
import(/* webpackChunkName: "error" */'@sentry/react')
|
|
.then(Sentry => {
|
|
Sentry.captureException(error);
|
|
})
|
|
.catch(console.error);
|
|
};
|