如何使用带有通配符的多个文件的HtmlWebpackPlugin?

时间:2017-12-02 00:04:28

标签: webpack

我需要使用许多HTML文件,并且我使用HtmlWebpackPlugin来生成它们。下面是我的webpack中的配置之一:

new HtmlWebpackPlugin({
                filename: 'index.html',
                template: 'index.html',
                inject: 'body'
            }),

它可以正常加载一个HTML文件。但我可以用它来管理带有通配符的多个文件吗?如下配置:

new HtmlWebpackPlugin({
                    filename: '[filename].html',
                    template: 'src/components/**/*.html',
                }),

1 个答案:

答案 0 :(得分:0)

实现此目的的唯一方法是使用HtmlWebpackPlugin的多个实例。

以下是一个示例要点,说明如何完成: https://gist.github.com/prasann/cc797f4ab0715e7696d946647668d43b

有关如何:https://github.com/jantimon/html-webpack-plugin/issues/218

的详细信息