Просмотр исходного кода

feat(replays): Disable recording for non-production builds (#38078)

...e.g. `dev-ui` and acceptance tests.
Billy Vong 2 лет назад
Родитель
Сommit
982b6d66a6
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      static/app/components/sentryReplayInit.tsx

+ 4 - 0
static/app/components/sentryReplayInit.tsx

@@ -21,6 +21,10 @@ async function initSentryReplays() {
  */
 export function SentryReplayInit({organization}: {organization: Organization | null}) {
   useEffect(() => {
+    if (process.env.NODE_ENV !== 'production' || process.env.IS_ACCEPTANCE_TEST) {
+      return;
+    }
+
     if (!organization) {
       return;
     }