如何使用webpack将模块构建为数组而不是键映射?

时间:2018-07-25 12:33:40

标签: webpack

bundle_with_key_map.js

WQFf: function (t, e, n) {
    t.exports = {...}
},
Wh6c: function (t, e, n) {
    t.exports = {...}
},
WxI4: function (t, e) {
    t.exports = {...}
},
WyC4: function (t, e) {
    t.exports = {...}
},

bundle_with_array.js

}, function (e, t, n) {
    e.exports = {...}
}, function (e, t, n) {
    e.exports = {...}
}, function (e, t, n) {
    e.exports = {...}
}

我注意到某些webpack模块被组织为一个地图,但是一些数组被组织。

哪种webpack选项可以处理混乱的组织样式?

0 个答案:

没有答案