Webpack 4删除/删除html的某些部分

时间:2018-03-08 12:45:15

标签: webpack webpack-4

我正在使用 html-webpack-plugin 来处理html文件 在导出服务器之前,我需要删除一些部分。我找到了几个插件来执行此操作,但它们已过时或无法与webpack 4一起使用。

这是 html-webpack-plugin 的配置。

enter image description here

我标记了我想要删除的部分。

<!--deletestart--> 
  code to be removed.
<!--deleteend-->

enter image description here

是否有任何可用的插件或使用webpack 4的方法?感谢。

1 个答案:

答案 0 :(得分:0)

我建议对现有插件进行更新。作者很快就做出了改变。谢谢。

<强> HTML-的WebPack-插件-删除

https://github.com/alexblunck/html-webpack-plugin-remove

我可以像这样轻松使用它。

new HtmlPluginRemove(/<!--deletestart-->[\s\S]*<!--deleteend-->/gi),