From 53cdaee0653d644344f5d56dc795a64bbb96a50e Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Wed, 15 Jan 2025 15:09:48 -0300 Subject: [PATCH] fix: prevent kill webpack This will split in smaller bundles Signed-off-by: Vitor Mattos --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.js b/webpack.config.js index 3b3a50251c..b64b21a3cd 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -19,6 +19,7 @@ module.exports = merge(nextcloudWebpackConfig, { }, optimization: { splitChunks: { + chunks: 'all', cacheGroups: { defaultVendors: { reuseExistingChunk: true,