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 e012750 commit 0ae3b0bCopy full SHA for 0ae3b0b
server.js
@@ -6,8 +6,20 @@ new WebpackDevServer(webpack(config), {
6
publicPath: config.output.publicPath,
7
hot: true,
8
historyApiFallback: true,
9
+ // It suppress error shown in console, so it has to be set to false.
10
+ quiet: false,
11
+ // It suppress everything except error, so it has to be set to false as well
12
+ // to see success build.
13
+ noInfo: false,
14
stats: {
- colors: true
15
+ // Config for minimal console.log mess.
16
+ assets: false,
17
+ colors: true,
18
+ version: false,
19
+ hash: false,
20
+ timings: false,
21
+ chunks: false,
22
+ chunkModules: false
23
}
24
}).listen(3000, 'localhost', function (err) {
25
if (err) {
0 commit comments