在定义加载器配置时,我想使用webpack加载器API。
webpack.options.js
module: {
rules: [
{
loader: 'loader-name',
options: {
// I need to have access to the loader context here
}
}
]
}
我希望可以使用options: function () { ... }
,但这会引发Invalid configuration object
警告。
有没有机会做这项工作?