I am using webpack-bundle-analyzer library for my VUE application. I had written following code snippet in my vue.config.js.
I passed openAnalyzer option as false to not open report in the default browser. Not sure why it's not working. Even when I mention it as false still report is getting opening in the default browser.
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
openAnalyzer: false,
}),
],
can anyone help me on this. I am using web-pack4
Thanks