Disable bundle analyzer for ci builds

This commit is contained in:
Thomas Nordquist
2019-04-08 08:51:39 +02:00
parent a150da0254
commit e9ab3da6c2

View File

@@ -65,7 +65,7 @@ module.exports = {
plugins: [ plugins: [
new LiveReloadPlugin({}), new LiveReloadPlugin({}),
new HtmlWebpackPlugin({ template: './index.html', file: './build/index.html', inject: false }), new HtmlWebpackPlugin({ template: './index.html', file: './build/index.html', inject: false }),
new BundleAnalyzerPlugin(), // new BundleAnalyzerPlugin(),
new webpack.HotModuleReplacementPlugin(), new webpack.HotModuleReplacementPlugin(),
], ],