Skip to content

Commit 5661c47

Browse files
feat: remove bundle analyzer from dev
1 parent 56499c1 commit 5661c47

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

internals/webpack/webpack.config.dev.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ const path = require('path');
66
const webpack = require('webpack');
77
const HtmlWebpackPlugin = require('html-webpack-plugin');
88
const CircularDependencyPlugin = require('circular-dependency-plugin');
9-
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
109

1110
module.exports = require('./webpack.config.base')({
1211
mode: 'development',
@@ -38,8 +37,7 @@ module.exports = require('./webpack.config.base')({
3837
new CircularDependencyPlugin({
3938
exclude: /a\.js|node_modules/, // exclude node_modules
4039
failOnError: false // show a warning when there is a circular dependency
41-
}),
42-
new BundleAnalyzerPlugin()
40+
})
4341
],
4442

4543
// Emit a source map for easier debugging

0 commit comments

Comments
 (0)