webpack html-webpack-plugin,我可以使用条件注释来导入入口脚本吗?

时间:2016-01-05 10:29:08

标签: webpack

我有多个条目,如:

entry: {
  foo: 'foo.js'
  bar: 'bar.js'
  ie: 'ie.js'
},
output: {
  path: path.join(__dirname, '/dist/'),
  filename: '[name]-[hash].min.js'
}

当我使用HtmlWebpackPlugin时,肯定是使用块来导入或不导入条目。 我希望在HTML文件中生成条件注释,例如:

<!--[if lte IE 9]>
  <script type="text/javascript" src="ie-12dx....js"></script>
<![endif]-->

关于如何实现这一点的任何想法?

1 个答案:

答案 0 :(得分:3)

感谢jantimon - html-webpack-plugin的合作者。

  

您必须创建自定义索引文件:   https://github.com/ampedandwired/html-webpack-plugin/blob/master/default_index.html#L15

根据自定义索引文件示例,我自己做了:

我的剧本:

<!--[if lte IE 9]>
{% for (var chunk in o.htmlWebpackPlugin.files.chunks) { %}
{% if (/^ie-\w+\.min\.js$/.test(o.htmlWebpackPlugin.files.chunks[chunk].entry)) { %}
<script type="text/javascript" src="{%=o.htmlWebpackPlugin.files.chunks[chunk].entry %}></script>
{% } %}
{% } %}
<![endif]-->

效果很好!