我需要使用许多HTML文件,并且我使用HtmlWebpackPlugin
来生成它们。下面是我的webpack中的配置之一:
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: 'body'
}),
它可以正常加载一个HTML文件。但我可以用它来管理带有通配符的多个文件吗?如下配置:
new HtmlWebpackPlugin({
filename: '[filename].html',
template: 'src/components/**/*.html',
}),
答案 0 :(得分:0)
实现此目的的唯一方法是使用HtmlWebpackPlugin的多个实例。
以下是一个示例要点,说明如何完成: https://gist.github.com/prasann/cc797f4ab0715e7696d946647668d43b
有关如何:https://github.com/jantimon/html-webpack-plugin/issues/218
的详细信息