There was an error while loading. Please reload this page.
1 parent fc301a9 commit 916fddeCopy full SHA for 916fdde
packages/react-scripts/config/env.js
@@ -66,11 +66,11 @@ process.env.NODE_PATH = (process.env.NODE_PATH || '')
66
67
// Grab NODE_ENV and REACT_APP_* environment variables and prepare them to be
68
// injected into the application via DefinePlugin in Webpack configuration.
69
-// const REACT_APP = /^BKN_APP_/i;
+const REACT_APP = /^REACT_APP_/i;
70
71
function getClientEnvironment(publicUrl) {
72
const raw = Object.keys(process.env)
73
- // .filter(key => REACT_APP.test(key))
+ .filter(key => REACT_APP.test(key))
74
.reduce(
75
(env, key) => {
76
env[key] = process.env[key];
0 commit comments