我尝试使用把手生成一些文件,我希望在渲染时将一些配置参数包含在上下文中。
我们尝试创建一个加载器,这适用于生成把手模板,但似乎无法在上下文中实际传递。
{
test: /\.html$/,
loader: 'handlebars-loader',
query: {
extensions: ['.html'],
**context**: { **// THIS IS A PSEUDO CODE, There doesn't seem to actually be a way to pass in context**
root: config.public_cdn_url,
some_other_properties: "one two three"
},
partialDirs: [
config.dir_partials
]
}
}
如何将上下文变量添加到handlebars-loader?