Reduce noise in webpack dev server.

This commit is contained in:
Dillon Kearns 2019-08-19 18:02:04 -07:00
parent e2e81803b8
commit f79486b3b2

View File

@ -40,7 +40,8 @@ function start({ routes, debug, manifestConfig }) {
contentBase: "./dist",
hot: true,
inline: false,
host: "localhost"
host: "localhost",
stats: "errors-only"
};
webpackDevServer.addDevServerEntrypoints(config, options);