diff --git a/src/index.tsx b/src/index.tsx index 50e40f1..3bbd6f3 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,16 +1,16 @@ import ReactDOM from "react-dom/client"; import Root from "./Root"; -import * as Sentry from "@sentry/react"; -import config from "./config/config.json"; +// import * as Sentry from "@sentry/react"; +// import config from "./config/config.json"; -Sentry.init({ - dsn: config.SENTRY_DSN, - environment: process.env.NODE_ENV, - integrations: [new Sentry.BrowserTracing(), new Sentry.Replay()], - tracesSampleRate: 1.0, - replaysSessionSampleRate: 0.1, - replaysOnErrorSampleRate: 1.0, -}); +// Sentry.init({ +// dsn: config.SENTRY_DSN, +// environment: process.env.NODE_ENV, +// integrations: [new Sentry.BrowserTracing(), new Sentry.Replay()], +// tracesSampleRate: 1.0, +// replaysSessionSampleRate: 0.1, +// replaysOnErrorSampleRate: 1.0, +// }); const root = ReactDOM.createRoot( document.getElementById("root") as HTMLElement