We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6dcfa5 commit 0d48a1dCopy full SHA for 0d48a1d
src/index.js
@@ -3,9 +3,21 @@ import ReactDOM from 'react-dom';
3
import './index.css';
4
import App from './App';
5
import store from './store';
6
+import * as Sentry from "@sentry/react";
7
+import { BrowserTracing } from "@sentry/tracing";
8
import { Provider } from 'react-redux';
9
import * as serviceWorkerRegistration from './serviceWorkerRegistration';
10
11
+Sentry.init({
12
+ dsn: "https://[email protected]/6385094",
13
+ integrations: [new BrowserTracing()],
14
+
15
+ // Set tracesSampleRate to 1.0 to capture 100%
16
+ // of transactions for performance monitoring.
17
+ // We recommend adjusting this value in production
18
+ tracesSampleRate: 1.0,
19
+});
20
21
ReactDOM.render(
22
<React.StrictMode>
23
<Provider store={store}>
0 commit comments