fix(env): Use NODE_ENV to enable/disable opbeat frontend

This commit is contained in:
Stuart Taylor
2018-03-13 22:56:44 +00:00
parent fa59bcfd7b
commit 73b8ba96af
2 changed files with 11 additions and 7 deletions

View File

@@ -1,4 +1,3 @@
/* global __OPBEAT__ORG_ID __OPBEAT__APP_ID */
import initOpbeat from 'opbeat-react';
import { createOpbeatMiddleware } from 'opbeat-react/redux';
import Rx from 'rx';
@@ -20,8 +19,13 @@ import {
saveToColdStorage
} from './cold-reload';
const localhostRE = /^(localhost|127.|0.)/;
const enableOpbeat = !localhostRE.test(window.location.hostname);
const {
__OPBEAT__ORG_ID,
__OPBEAT__APP_ID,
NODE_ENV
} = process.env;
const enableOpbeat = NODE_ENV !== 'development';
if (enableOpbeat) {
if (!__OPBEAT__ORG_ID || !__OPBEAT__APP_ID) {