All files / src main.tsx

0% Statements 0/3
0% Branches 0/2
100% Functions 0/0
0% Lines 0/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30                                                           
import React from "react";
import ReactDOM from "react-dom/client";
import * as Sentry from "@sentry/react";
 
import App from "./App.tsx";
import "./index.css";
 
if (import.meta.env.MODE === "production") {
  Sentry.init({
    dsn: "https://cfa61d1d5ec1abd97e2ce5f957e4a8d7@o4506722166374400.ingest.sentry.io/4506722184790016",
    integrations: [
      Sentry.browserTracingIntegration(),
      Sentry.replayIntegration({
        maskAllText: false,
        blockAllMedia: false,
      }),
    ],
    tracesSampleRate: 1.0,
    tracePropagationTargets: ["localhost", /^https:\/\/yourserver\.io\/api/],
    replaysSessionSampleRate: 0.1,
    replaysOnErrorSampleRate: 1.0,
  });
}
 
ReactDOM.createRoot(document.getElementById("root")!).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);