-
-
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
Dev server outputing webpack progress line by line #4557
Comments
I noticed this too. Here's a similar issue, with a workaround: #3603 (comment) Note in that
|
Same issue here! just noticed it happening - only in |
This issue is making CI build status pretty useless for us. UPDATE: Just delete the progress bar until this is fixed:
👆that actually removes the wall of progress bar output from CI Using the "simple-progress-webpack-plugin" isn't much better. |
This caused the dev server when used in conjunction with ASP.NET Core's SpaServices |
Same issue here. Is it going to be fixed in the next major release only? |
Introduced in this commit webpack/webpack#9225 Not yet sure how to fix it. Will investigate later. |
I am on v4.0.5 and even |
@rayax86, I was able to get it working by adding the
The intention may have been to allow this flag on the
But that doesn't quite work because of this line: https://github.com/vuejs/vue-cli/blob/dev/packages/%40vue/cli-service/lib/commands/serve.js#L64 At that point in the code where the In some ways, it does make sense to keep the I'm not sure if this should be fixed as a bug, by checking |
set version: ~4.2.0 |
same issue here with // vue.config.js
module.exports = {
...
devServer: {
progress: false
},
...
} thanks to @geekytime |
I have this issue after i'm add a concurrently vue start: version: 4.5.6 |
Just in case there's any docker noobs like me here, trying to run docker run -it --publish 8080:8080 myapp |
* Dockerfile wasn't doing npm install. * suppress webpack output as per vuejs/vue-cli#4557
webpack/webpack#16810 should fix this issue. |
Version
3.11.0
Environment info
Steps to reproduce
What is expected?
Nice tidy output
What is actually happening?
New lines for every update, no clearing of previous output
Unsure of what prompted this, but the output in the Vue UI suddenly stopped its text parsing behavior when looking at the output view when serving a project. I have updated to the latest Vue CLI and used a previous build of the project and there has been no change.
The text was updated successfully, but these errors were encountered: