From edddc7c79138bacf99d351033a75c0c15c480c59 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Thu, 1 Jun 2017 18:49:56 -0700 Subject: [PATCH] Enable stats.json analysis with Webpack Visualizer (#3509) --- config/webpack/production.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/webpack/production.js b/config/webpack/production.js index 5e74d7b87bf..c93dd55e309 100644 --- a/config/webpack/production.js +++ b/config/webpack/production.js @@ -33,6 +33,10 @@ module.exports = merge(sharedConfig, { new BundleAnalyzerPlugin({ // generates report.html and stats.json analyzerMode: 'static', generateStatsFile: true, + statsOptions: { + // allows usage with http://chrisbateman.github.io/webpack-visualizer/ + chunkModules: true, + }, openAnalyzer: false, logLevel: 'silent', // do not bother Webpacker, who runs with --json and parses stdout }),