const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer'); module.exports = { webpack: (config) => { config.plugins.push(new BundleAnalyzerPlugin({ analyzerMode: 'static', reportFilename: 'bundle-analysis.html', openAnalyzer: false })); return config; } };