Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ if (process.env.NODE_ENV === 'production') {

tunnel: websiteConfig.sentry_tunnel,

integrations: [],
integrations: [
new Sentry.Integrations.Console(),
],
});

// Lazy-load the Sentry Replay integration
Expand Down
4 changes: 4 additions & 0 deletions sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@ if (process.env.NODE_ENV === 'production') {

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,

integrations: [
new Sentry.Integrations.Console(),
],
});
}
4 changes: 4 additions & 0 deletions sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ if (process.env.NODE_ENV === 'production') {

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,

integrations: [
new Sentry.Integrations.Console(),
],
});
}