diff --git a/apps/web/sentry.client.config.ts b/apps/web/sentry.client.config.ts index b49c5838e..d3a346983 100644 --- a/apps/web/sentry.client.config.ts +++ b/apps/web/sentry.client.config.ts @@ -20,4 +20,6 @@ Sentry.init({ // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, + + tracesSampleRate: 1.0, }) diff --git a/apps/web/sentry.edge.config.ts b/apps/web/sentry.edge.config.ts index 94066b58f..2504c8a17 100644 --- a/apps/web/sentry.edge.config.ts +++ b/apps/web/sentry.edge.config.ts @@ -10,4 +10,6 @@ Sentry.init({ // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, + + tracesSampleRate: 1.0, }) diff --git a/apps/web/sentry.server.config.ts b/apps/web/sentry.server.config.ts index 9e4f3221b..323e3789e 100644 --- a/apps/web/sentry.server.config.ts +++ b/apps/web/sentry.server.config.ts @@ -9,4 +9,6 @@ Sentry.init({ // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, + + tracesSampleRate: 1.0, })