import * as Sentry from "@sentry/browser";
Sentry.init({
dsn: import.meta.env.VITE_SENTRY_DSN_PUBLIC,
integrations: [
Sentry.feedbackIntegration({
colorScheme: 'system',
showBranding: false,
}),
Sentry.replayIntegration(),
],
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0,
tracePropagationTargets: [
'my-site.com',
],
});
import * as Sentry from "@sentry/browser";
Sentry.init({
dsn: import.meta.env.VITE_SENTRY_DSN_PUBLIC,
integrations: [
Sentry.feedbackIntegration({
colorScheme: 'system',
showBranding: false,
}),
Sentry.replayIntegration(),
],
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0,
tracePropagationTargets: [
'my-site.com',
],
});