We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3225ac commit 96641cdCopy full SHA for 96641cd
packages/@vue/cli-service/lib/commands/serve.js
@@ -138,6 +138,7 @@ module.exports = (api, options) => {
138
139
// create server
140
const server = new WebpackDevServer(compiler, Object.assign({
141
+ logLevel: 'silent',
142
clientLogLevel: 'silent',
143
historyApiFallback: {
144
disableDotRule: true,
@@ -146,7 +147,6 @@ module.exports = (api, options) => {
146
147
contentBase: api.resolve('public'),
148
watchContentBase: !isProduction,
149
hot: !isProduction,
- quiet: true,
150
compress: isProduction,
151
publicPath: options.publicPath,
152
overlay: isProduction // TODO disable this
0 commit comments