From 13e330ebeb221ac1f48b6cbd095aac831f6e53bb Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 4 Sep 2021 16:43:57 -0500 Subject: [PATCH] Webpack: suppress polyfill output --- babel.config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/babel.config.js b/babel.config.js index 7ea3721a1..1e167ead6 100644 --- a/babel.config.js +++ b/babel.config.js @@ -26,7 +26,6 @@ module.exports = (api) => { switch (env) { case 'production': - envOptions.debug = false; config.plugins.push(...[ 'lodash', [ @@ -51,7 +50,6 @@ module.exports = (api) => { ]); break; case 'development': - envOptions.debug = true; config.plugins.push(...[ '@babel/transform-react-jsx-source', '@babel/transform-react-jsx-self',