Visualize and analyze your Webpack bundle to see which modules are taking up space and which might be duplicates.
npm install webpack-visualizer-plugin
npm install webpack-visualizer-plugin
`
`javascript
var Visualizer = require('webpack-visualizer-plugin');
//...
plugins: [new Visualizer()],
//...
`
This will output a file named stats.html in your output directory. You can modify the name/location by passing a filename parameter into the constructor.
`javascript
var Visualizer = require('webpack-visualizer-plugin');
//...
plugins: [new Visualizer({
filename: './statistics.html'
})],
//...
``