From e9ab3da6c2ed0cdd59156db9c0a4da05fda38aad Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Mon, 8 Apr 2019 08:51:39 +0200 Subject: [PATCH] Disable bundle analyzer for ci builds --- app/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/webpack.config.js b/app/webpack.config.js index d22f774..42c8202 100644 --- a/app/webpack.config.js +++ b/app/webpack.config.js @@ -65,7 +65,7 @@ module.exports = { plugins: [ new LiveReloadPlugin({}), new HtmlWebpackPlugin({ template: './index.html', file: './build/index.html', inject: false }), - new BundleAnalyzerPlugin(), + // new BundleAnalyzerPlugin(), new webpack.HotModuleReplacementPlugin(), ],