Skip to content

Commit

Permalink
fix: 센트리 주석
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbeann committed Jan 15, 2024
1 parent fc360c7 commit 7a0b3d3
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 7a0b3d3

Please sign in to comment.