例如,我有两个条目a.js和b.js; a.js使用A插件,b.js使用B插件
答案 0 :(得分:1)
为此,您将必须使用多种配置(在您的情况下为两种)。 您可以导出配置数组,而不是导出配置。
module.exports = [
{
entry: 'myappA.js',
plugins: [new MyPluginA()],
...
},
{
entry: 'myappB.js',
plugins: [new MyPluginB()],
...
}
]
您可以在官方文档中找到更多信息: https://webpack.js.org/configuration/configuration-types/#exporting-multiple-configurations