Skip to content

Commit 4507284

Browse files
committed
reduce webpack verbosity
1 parent 65c744e commit 4507284

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module.exports = function karmaConfig (config) {
4949

5050
// Hide webpack build information from output
5151
webpackMiddleware: {
52-
noInfo: true
52+
noInfo: 'errors-only'
5353
}
5454
});
5555
};

webpack.config.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,7 @@ module.exports = function makeWebpackConfig () {
197197
*/
198198
config.devServer = {
199199
contentBase: './src/public',
200-
stats: {
201-
modules: false,
202-
cached: false,
203-
colors: true,
204-
chunk: false
205-
}
200+
stats: 'minimal'
206201
};
207202

208203
return config;

0 commit comments

Comments
 (0)