From c0c380a7b5e1785e48e49672a4c67b67a58cb155 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Thu, 25 Feb 2021 23:01:12 -0800 Subject: [PATCH] Simplify generation --- packages/webapp/webpack.common.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/webapp/webpack.common.js b/packages/webapp/webpack.common.js index 4a286ccd..120e8d3a 100644 --- a/packages/webapp/webpack.common.js +++ b/packages/webapp/webpack.common.js @@ -42,15 +42,10 @@ module.exports = { splitChunks: { cacheGroups: { vendors: { - test: /node_modules\/(?!@material-ui\/).*/, + test: /node_modules\/.*/, name: "vendors", chunks: "all", - }, - material: { - test: /node_modules\/(@material-ui\/).*/, - name: "material-ui", - chunks: "all", - }, + } }, } },