import * as Sentry from "@sentry/react"; Sentry.init({ dsn: import.meta.env.VITE_SENTRY_DSN, environment: import.meta.env.MODE, integrations: [ Sentry.browserTracingIntegration(), Sentry.replayIntegration({ maskAllText: false, blockAllMedia: false, }), ], // Tracing — capture 100% in dev, 20% in production tracesSampleRate: import.meta.env.PROD ? 0.2 : 1.0, tracePropagationTargets: [ "localhost", /^https:\/\/api\.resolutionflow\.com/, ], // Session Replay — record 10% of sessions, 100% of error sessions replaysSessionSampleRate: 0.1, replaysOnErrorSampleRate: 1.0, });