diff --git a/index.js b/index.js index a5b7f62e9dcbd6d39c56dfd94551accfe645503b..0dc2d34977af55786ab62208ef50aa6ca9f27bcb 100644 --- a/index.js +++ b/index.js @@ -74,7 +74,7 @@ Sentry.init({ // Set tracesSampleRate to 1.0 to capture 100% // of transactions for performance monitoring. // We recommend adjusting this value in production - tracesSampleRate: 1.0, + tracesSampleRate: isLocal() ? 0 : 1.0, release: version, environment: isDev() ? 'development' : 'production', debug: isDev(),