Context 指的是 需要表達式,例如 require('./locale/' + name + '.json')。
require('./locale/' + name + '.json')
ContextExclusionPlugin 允許您排除 context。在初始化外掛程式時提供 RegExp 作為引數,以排除與其匹配的所有 context。
ContextExclusionPlugin
webpack.config.js
module.exports = { plugins: [new webpack.ContextExclusionPlugin(/dont/)], };