Skip to content

Commit

Permalink
ci: sentry에서 replay 관련 설정 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
BadaHertz52 committed Aug 7, 2024
1 parent fcc76c1 commit c8b5832
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@ const baseUrlPattern = new RegExp(`^${process.env.API_BASE_URL?.replace(/[-\/\\^
Sentry.init({
dsn: `${process.env.SENTRY_DSN}`,
enabled: !isDev,
integrations: [Sentry.browserTracingIntegration(), Sentry.replayIntegration()],
integrations: [Sentry.browserTracingIntegration()],
environment: 'production',
tracesSampleRate: 1.0,
tracePropagationTargets: [baseUrlPattern],
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0,
});

const queryClient = new QueryClient({
Expand Down

0 comments on commit c8b5832

Please sign in to comment.