-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
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
vue-cli will remain in the building state without displaying the compilation results when you have more than 5 page entries(in my computer) #1996
Comments
I did the same test on my mac and I encountered the same problem. Node 8.11.2 / yarn 1.7.0 / Mac 10.13.6 |
Please provide an actual repository with the code you describe. We don't do manual reproductions. |
code.zip |
A github repository would be easier, but a zip might do |
Ok, next time I will... But can you reproduce my problem? |
I think this may be a webpack issue, or a combination of multiple html-webpack-plugins... |
@yyx990803 You are right, it seems to be the |
Figured out how to switch to rc3 and worked for me too! What I did was deleted node_modules folder and package-lock.json, removed @vue/cli-plugin-babel, @vue/cli-plugin-eslint and @vue/cli-service from package.json and installed rc3 version for those 3 packages (npm install @vue/cli-service@v3.0.0-rc.3) |
It's a regression introduced in 4b5a634 |
For now, a workaround is to disable module.exports = {
// ...
chainWebpack: config => config.plugins.delete('named-chunks')
} |
Version
3.0.0-rc.10
Node and OS info
Node 8.9.4 / yarn 1.7.0 / Windows 10
Steps to reproduce
If you have more than 5 page entries, vue-cli will remain in the building state without displaying the compilation results.
Such as this in your
vue.config.js
:Each of
index*.js
has similar code, such asWhat is expected?
Continue to compile...
What is actually happening?
It will remain in the building state without displaying the compilation results
The text was updated successfully, but these errors were encountered: