Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/Team-Lecue/Lecue-Client
Browse files Browse the repository at this point in the history
…into feature/CreateNote
  • Loading branch information
Arooming committed Jan 15, 2024
2 parents 76da4d3 + 7a0b3d3 commit 1141a07
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
import * as Sentry from '@sentry/react';
import React from 'react';
import ReactDOM from 'react-dom/client';

import App from './App.tsx';

Sentry.init({
dsn: 'https://ff1721b5da5c3ed5ed8c4e4507b6ad51@o4506557086629888.ingest.sentry.io/4506573475741696',
integrations: [
new Sentry.BrowserTracing({
tracePropagationTargets: ['localhost', /^https:\/\/www\.lecue\.me/],
}),
new Sentry.Replay({
maskAllText: false,
blockAllMedia: false,
}),
],
tracesSampleRate: 1.0,
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0,
});
// Sentry.init({
// dsn: 'https://ff1721b5da5c3ed5ed8c4e4507b6ad51@o4506557086629888.ingest.sentry.io/4506573475741696',
// integrations: [
// new Sentry.BrowserTracing({
// tracePropagationTargets: ['localhost', /^https:\/\/www\.lecue\.me/],
// }),
// new Sentry.Replay({
// maskAllText: false,
// blockAllMedia: false,
// }),
// ],
// tracesSampleRate: 1.0,
// replaysSessionSampleRate: 0.1,
// replaysOnErrorSampleRate: 1.0,
// });

ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
Expand Down

0 comments on commit 1141a07

Please sign in to comment.