From a274e9e9f1e0a2bd0c6695bc7c226f376205916b Mon Sep 17 00:00:00 2001 From: Chris Chudzicki Date: Wed, 7 Sep 2022 10:28:07 -0400 Subject: [PATCH] lowercase webpack_analyze true --- frontends/infinite-corridor/webpack.config.js | 2 +- frontends/open-discussions/webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/infinite-corridor/webpack.config.js b/frontends/infinite-corridor/webpack.config.js index 5b492e7afd..48f7ea6ce5 100644 --- a/frontends/infinite-corridor/webpack.config.js +++ b/frontends/infinite-corridor/webpack.config.js @@ -166,7 +166,7 @@ const getWebpackConfig = ({mode, analyzeBundle}) => { module.exports = (_env, argv) => { const mode = argv.mode || process.env.NODE_ENV || "production" - const analyzeBundle = process.env.WEBPACK_ANALYZE === "True" + const analyzeBundle = process.env.WEBPACK_ANALYZE === "true" const settings = { mode, analyzeBundle } return getWebpackConfig(settings) } diff --git a/frontends/open-discussions/webpack.config.js b/frontends/open-discussions/webpack.config.js index f97b8dd743..0b9480d622 100644 --- a/frontends/open-discussions/webpack.config.js +++ b/frontends/open-discussions/webpack.config.js @@ -127,6 +127,6 @@ const getWebpackConfig = ({mode, analyzeBundle}) => { module.exports = (_env, argv) => { const mode = argv.mode || process.env.NODE_ENV || "production" - const analyzeBundle = process.env.WEBPACK_ANALYZE === "True" + const analyzeBundle = process.env.WEBPACK_ANALYZE === "true" return getWebpackConfig({mode, analyzeBundle}) }