We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
@dminkovsky @balthazar @jrackTao I had the same question a while ago. You need to disable ModuleConcatenationPlugin
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
Sorry, something went wrong.
@jakub-g Thank you!
Successfully merging a pull request may close this issue.
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?
The text was updated successfully, but these errors were encountered: