diff --git a/sentry.client.config.ts b/sentry.client.config.ts index 4805665..ff20893 100644 --- a/sentry.client.config.ts +++ b/sentry.client.config.ts @@ -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 diff --git a/sentry.edge.config.ts b/sentry.edge.config.ts index c2e52c8..bf68edf 100644 --- a/sentry.edge.config.ts +++ b/sentry.edge.config.ts @@ -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(), + ], }); } \ No newline at end of file diff --git a/sentry.server.config.ts b/sentry.server.config.ts index df45cf6..17bcef1 100644 --- a/sentry.server.config.ts +++ b/sentry.server.config.ts @@ -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(), + ], }); } \ No newline at end of file