File tree
Expand file treeCollapse file tree1 file changed
+5
-1
lines changed packages/@vue/cli-service/lib/commands
Expand file treeCollapse file tree1 file changed
+5
-1
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -62,7 +62,11 @@ module.exports = (api, options) => {
|
62 | 62 | .output
|
63 | 63 | .globalObject(`(typeof self !== 'undefined' ? self : this)`)
|
64 | 64 |
|
65 |
| -if (!process.env.VUE_CLI_TEST && options.devServer.progress !== false) { |
| 65 | +if ( |
| 66 | +!process.env.VUE_CLI_TEST && |
| 67 | +(!options.devServer.client || |
| 68 | +options.devServer.client.progress !== false) |
| 69 | +) { |
66 | 70 | // the default progress plugin won't show progress due to infrastructreLogging.level
|
67 | 71 | webpackConfig
|
68 | 72 | .plugin('progress')
|
|
You can’t perform that action at this time.
0 commit comments