Skip to content

Commit

Permalink
feat: add sentry feedback integration
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen committed Jan 16, 2025
1 parent 95f2624 commit dd4a17e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: "https://[email protected]/4508654849294336",
integrations: [Sentry.replayIntegration()],
integrations: [
Sentry.replayIntegration(),
Sentry.feedbackIntegration({
colorScheme: "system",
}),
],
tracesSampleRate: 1,
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0,
Expand Down

0 comments on commit dd4a17e

Please sign in to comment.