webpack: split all chunks

This commit is contained in:
Gregor Kleen 2023-05-13 19:52:50 +02:00
parent 3fee7cd8b3
commit 71c636bba3

View File

@ -113,7 +113,10 @@ const config = {
moduleIds: 'named',
chunkIds: 'named',
runtimeChunk: 'single',
realContentHash: false
realContentHash: false,
splitChunks: {
chunks: 'all',
},
},
};