如何使用splitChunks.maxAsyncRequests选项

时间:2019-04-01 11:19:48

标签: webpack-4

我总是对maxAsyncRequests感到困惑; 例如:我这样设置maxAsyncRequests 1

splitChunks: {

        chunks: 'all', 



        maxAsyncRequests:1,

      },

并在一个这样的条目中


import('moment').then(component=>{})

import('lodash').then(component=>{})

import('query-string').then(component=>{})

我想我会得到一个块,因为我将maxAsyncRequests设置为1,但是我得到了三个。为什么?

0 个答案:

没有答案