上下文是指带有表达式的 require,例如 require('./locale/' + name + '.json')。
require('./locale/' + name + '.json')
ContextExclusionPlugin 允许你排除上下文。在初始化插件时提供 RegExp 作为参数,以排除与之匹配的所有上下文。
ContextExclusionPlugin
webpack.config.js
module.exports = { plugins: [new webpack.ContextExclusionPlugin(/dont/)], };