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", - }, + } }, } },