-
Notifications
You must be signed in to change notification settings - Fork 0
webpack splitChunks
jerryzhang edited this page Jan 31, 2023
·
1 revision
title: webpack splitChunks url: https://www.yuque.com/endday/blog/gytgpv
module.exports = {
//...
optimization: {
splitChunks: {
chunks: 'async',
minSize: 30000,
maxSize: 0,
minChunks: 1,
maxAsyncRequests: 5,
maxInitialRequests: 3,
automaticNameDelimiter: '~',
automaticNameMaxLength: 30,
name: true,
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true
}
}
}
}
};