We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
yyx990803
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
devServer.client.progress
1 parent 558dea2 commit beffe8aCopy full SHA for beffe8a
packages/@vue/cli-service/lib/commands/serve.js
@@ -62,7 +62,11 @@ module.exports = (api, options) => {
62
.output
63
.globalObject(`(typeof self !== 'undefined' ? self : this)`)
64
65
- if (!process.env.VUE_CLI_TEST && options.devServer.progress !== false) {
+ if (
66
+ !process.env.VUE_CLI_TEST &&
67
+ (!options.devServer.client ||
68
+ options.devServer.client.progress !== false)
69
+ ) {
70
// the default progress plugin won't show progress due to infrastructreLogging.level
71
webpackConfig
72
.plugin('progress')
0 commit comments