45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
import { useEffect } from "react";
|
|
import * as Sentry from "@sentry/react";
|
|
import {
|
|
createRoutesFromChildren,
|
|
matchRoutes,
|
|
useLocation,
|
|
useNavigationType,
|
|
} from "react-router-dom";
|
|
|
|
console.log(import.meta.env);
|
|
Sentry.init({
|
|
dsn: import.meta.env.VITE_SENTRY_DSN,
|
|
integrations: [
|
|
// See docs for support of different versions of variation of react router
|
|
// https://docs.sentry.io/platforms/javascript/guides/react/configuration/integrations/react-router/
|
|
Sentry.reactRouterV6BrowserTracingIntegration({
|
|
useEffect,
|
|
useLocation,
|
|
useNavigationType,
|
|
createRoutesFromChildren,
|
|
matchRoutes,
|
|
}),
|
|
Sentry.replayIntegration(),
|
|
],
|
|
enabled: import.meta.env.PROD, // Only enable in production
|
|
environment: import.meta.env.MODE, // Set the environment
|
|
// Set tracesSampleRate to 1.0 to capture 100%
|
|
// of transactions for tracing.
|
|
// Learn more at
|
|
// https://docs.sentry.io/platforms/javascript/configuration/options/#traces-sample-rate
|
|
tracesSampleRate: 0,
|
|
|
|
// Set `tracePropagationTargets` to control for which URLs trace propagation should be enabled
|
|
tracePropagationTargets: [
|
|
// /^\//,
|
|
// new RegExp(`^${import.meta.env.VITE_API_BASE_URL}`),
|
|
],
|
|
// Capture Replay for 10% of all sessions,
|
|
// plus for 100% of sessions with an error
|
|
// Learn more at
|
|
// https://docs.sentry.io/platforms/javascript/session-replay/configuration/#general-integration-configuration
|
|
replaysSessionSampleRate: 0,
|
|
replaysOnErrorSampleRate: 0,
|
|
});
|