We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fbbd35 commit da38747Copy full SHA for da38747
packages/@vue/cli-service/lib/config/dev.js
@@ -1,4 +1,4 @@
1
-module.exports = api => {
+module.exports = (api, options) => {
2
api.chainWebpack(webpackConfig => {
3
if (process.env.NODE_ENV === 'development') {
4
webpackConfig
@@ -21,7 +21,7 @@ module.exports = api => {
21
.plugin('no-emit-on-errors')
22
.use(require('webpack/lib/NoEmitOnErrorsPlugin'))
23
24
- if (!process.env.VUE_CLI_TEST) {
+ if (!process.env.VUE_CLI_TEST && options.devServer.progress !== false) {
25
26
.plugin('progress')
27
.use(require('webpack/lib/ProgressPlugin'))
0 commit comments