razzle-plugin-bundle-analyzer
This package contains a plugin for using webpack-bundle-analyzer with Razzle
Usage in Razzle Projects
yarn add razzle-plugin-bundle-analyzer
Using the plugin with the default options
// razzle.config.jsmodule.exports = { plugins: ['bundle-analyzer'],};
With custom options:
// razzle.config.jsmodule.exports = { plugins: [ { name: 'bundle-analyzer', options: { target: 'web', // or 'node' env: 'production', // or 'development' bundleAnalyzerConfig: {}, }, }, ],};
Options
target: string (defaults: 'web')
env: string (defaults: 'production')
bundleAnalyzerConfig: bundleAnalyzerOptions (defaults: {})
Use this to override webpack-bundle-analyzer
options. Check all the options here: webpack-bundle-analyzer options.