From a808d26764396e083b7ba0b98e9cde009dfc8c08 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 25 Mar 2020 12:41:33 +0000 Subject: [PATCH] Enable webpack reuseExistingChunk Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- webpack.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index f54655b5bd..b9713c05d3 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -56,6 +56,9 @@ module.exports = (env, argv) => { enforce: true, // Do not add `chunks: 'all'` here because you'll break the app entry point. }, + default: { + reuseExistingChunk: true, + }, }, },