我总是对maxAsyncRequests感到困惑; 例如:我这样设置maxAsyncRequests 1
splitChunks: {
chunks: 'all',
maxAsyncRequests:1,
},
并在一个这样的条目中
import('moment').then(component=>{})
import('lodash').then(component=>{})
import('query-string').then(component=>{})
我想我会得到一个块,因为我将maxAsyncRequests设置为1,但是我得到了三个。为什么?