Skip to content

Commit

Permalink
feat: Add sentry integration
Browse files Browse the repository at this point in the history
  • Loading branch information
awtkns committed Apr 26, 2023
1 parent 1195a9f commit 9590742
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: process.env.SENTRY_DSN,
tracesSampleRate: 1,
tracesSampleRate: 0.01,
debug: false,
});
2 changes: 1 addition & 1 deletion sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: process.env.SENTRY_DSN,
tracesSampleRate: 1,
tracesSampleRate: 0.01,
debug: false,
});
2 changes: 1 addition & 1 deletion sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: process.env.SENTRY_DSN,
tracesSampleRate: 1,
tracesSampleRate: 0.01,
debug: false,
});

0 comments on commit 9590742

Please sign in to comment.