diff --git a/webpack.config.js b/webpack.config.js index f84c280..a5e5945 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -3,7 +3,6 @@ const increaseSpecificity = require('postcss-increase-specificity'); const autoprefixer = require('autoprefixer'); const CopyPlugin = require('copy-webpack-plugin'); const path = require('path'); -const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; const devMode = process.env.NODE_ENV !== 'production'; @@ -27,8 +26,7 @@ const defaultConfig = { new CopyPlugin([ { from: 'public', to: '.' }, ]), - ( devMode ? new BundleAnalyzerPlugin() : null ) - ].map(i => i), + ], module: { rules: [ {