Webpack: suppress polyfill output

This commit is contained in:
Alex Gleason 2021-09-04 16:43:57 -05:00
parent e8623d0af8
commit 13e330ebeb
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 0 additions and 2 deletions

View File

@ -26,7 +26,6 @@ module.exports = (api) => {
switch (env) { switch (env) {
case 'production': case 'production':
envOptions.debug = false;
config.plugins.push(...[ config.plugins.push(...[
'lodash', 'lodash',
[ [
@ -51,7 +50,6 @@ module.exports = (api) => {
]); ]);
break; break;
case 'development': case 'development':
envOptions.debug = true;
config.plugins.push(...[ config.plugins.push(...[
'@babel/transform-react-jsx-source', '@babel/transform-react-jsx-source',
'@babel/transform-react-jsx-self', '@babel/transform-react-jsx-self',