webpack-visualizer
webpack-visualizer copied to clipboard
How do I find out what's included in "+ modules" (plus modules)
I have a bundle that looks like this:
I have no idea what the "+ 143 modules" could be. How do I find out what's included in those modules?
@dminkovsky @balthazar @JrackTao I had the same question a while ago. You need to disable ModuleConcatenationPlugin
With webpack 4, you can do this by passing the following to the config:
...
optimization: {
concatenateModules: false,
},
BTW this info looks like something that could go into README
@jakub-g Thank you!