File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 75
75
"style-loader" : " 0.13.1" ,
76
76
"url-loader" : " 0.5.7" ,
77
77
"webpack" : " 1.13.2" ,
78
- "webpack-dev-server" : " 1.15.2 " ,
78
+ "webpack-dev-server" : " 1.16.0 " ,
79
79
"whatwg-fetch" : " 1.0.0"
80
80
},
81
81
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -251,6 +251,9 @@ function addMiddleware(devServer) {
251
251
252
252
function runDevServer ( port , protocol ) {
253
253
var devServer = new WebpackDevServer ( compiler , {
254
+ // Silence WebpackDevServer's own logs since they're generally not useful.
255
+ // It will still show compile warnings and errors with this setting.
256
+ clientLogLevel : 'none' ,
254
257
// By default WebpackDevServer also serves files from the current directory.
255
258
// This might be useful in legacy apps. However we already encourage people
256
259
// to use Webpack for importing assets in the code, so we don't need to
You can’t perform that action at this time.
0 commit comments