如何使用Webpack从带有上下文的Handlebar模板生成.html文件?

时间:2016-08-25 14:59:30

标签: webpack handlebars.js

我尝试使用把手生成一些文件,我希望在渲染时将一些配置参数包含在上下文中。

我们尝试创建一个加载器,这适用于生成把手模板,但似乎无法在上下文中实际传递。

{
  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?

0 个答案:

没有答案