From 73b17fd067579b1c5d38eba00e157964e0930a94 Mon Sep 17 00:00:00 2001 From: Paolo Priotto Date: Wed, 26 May 2021 10:20:04 +0200 Subject: [PATCH] fix: add cachedAssets to stats options (#779) fixes #770 --- packages/webpack-plugin/src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/webpack-plugin/src/index.js b/packages/webpack-plugin/src/index.js index 3cba3467e..a844cacb2 100644 --- a/packages/webpack-plugin/src/index.js +++ b/packages/webpack-plugin/src/index.js @@ -22,6 +22,7 @@ class LoadablePlugin { const stats = compilation.getStats().toJson({ all: false, assets: true, + cachedAssets: true, chunks: false, chunkGroups: true, chunkGroupChildren: true,