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
Webpack will fail rather messily if you have an entry configuration like this:
{ app: path.join(__dirname, 'app'), style: [ path.join(__dirname, 'app') ],
This leads to
Error: module cannot be added as entry point, because it's already in the bundle
It would be a very good idea to check against this as it can be hard to notice and it's one of those checks we can make.
It would be possible to do something similar against the source too but that would be far harder to pull off and goes beyond the scope of this issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Webpack will fail rather messily if you have an entry configuration like this:
This leads to
Error: module cannot be added as entry point, because it's already in the bundle
It would be a very good idea to check against this as it can be hard to notice and it's one of those checks we can make.
It would be possible to do something similar against the source too but that would be far harder to pull off and goes beyond the scope of this issue.
The text was updated successfully, but these errors were encountered: