From 873de21c557593def2b870086c12c8ef3168b3e4 Mon Sep 17 00:00:00 2001 From: Burak Tasci Date: Thu, 11 May 2017 09:41:26 +0300 Subject: [PATCH] feat: add colors to HMR stats --- .server/spa-server.hmr.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.server/spa-server.hmr.js b/.server/spa-server.hmr.js index 66d24ae8..c421d28a 100644 --- a/.server/spa-server.hmr.js +++ b/.server/spa-server.hmr.js @@ -24,7 +24,10 @@ const compiler = webpack(webpackConfig); server.use(webpackDevMiddleware(compiler, { noInfo: true, - publicPath: webpackConfig.output.publicPath + publicPath: webpackConfig.output.publicPath, + stats: { + colors: true + } })); server.use(webpackHotMiddleware(compiler, { log: console.log