Closed fallenleavesguy closed 7 years ago
If you mean you have two types of html files - one is for vue template the other is for any other purpose - you can use include/exclude option to separate their matching.
{
test: /\.html$/,
use: ['html-loader'],
include: /static/
},
{
test: /\.html$/,
use: ['vue-template-loader'],
include: /components/
}
just work
html-webpack-plugin require html-loader, so I can't replace
with