Skip to content

Commit

Permalink
fix(webpack): BundleAnalyzer no automatic open
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed May 19, 2020
1 parent 4ba6f4b commit de50cbd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions webpack.dev.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ module.exports = {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
openAnalyzer: false,
reportFilename: `${pkg.main}.html`
})
],
Expand Down
1 change: 1 addition & 0 deletions webpack.dev.web.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ module.exports = {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
openAnalyzer: false,
reportFilename: `${pkg.browser}.html`
})
],
Expand Down
1 change: 1 addition & 0 deletions webpack.prod.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ module.exports = {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
openAnalyzer: false,
reportFilename: `${pkg.mainMinified}.html`
})
],
Expand Down
1 change: 1 addition & 0 deletions webpack.prod.web.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ module.exports = {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
openAnalyzer: false,
reportFilename: `${pkg.browserMinified}.html`
})
],
Expand Down

0 comments on commit de50cbd

Please sign in to comment.