From 411614b73132ddc0f441b2ec495d45a0165b848a Mon Sep 17 00:00:00 2001 From: Jason Miller Date: Tue, 17 Apr 2018 14:07:57 -0400 Subject: [PATCH] Output minimal stats to the console during build --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.js b/webpack.config.js index 6ec40a2b..b48f3dae 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -31,6 +31,7 @@ module.exports = function (_, env) { mode: isProd ? 'production' : 'development', entry: './src/index', devtool: isProd ? 'source-map' : 'inline-source-map', + stats: 'minimal', output: { filename: isProd ? '[name].[chunkhash:5].js' : '[name].js', chunkFilename: '[name].chunk.[chunkhash:5].js',