multiple assets emit different content to the same filename index.html
qq_45856381 2024-08-02 17:07:15 阅读 86
使用webpack打包多入口文件时,当使用HtmlWebpackPlugin插件打包多个html文件时,需要指定对应模板的文件名,不指定则会报该错误即
<code>plugins:[
new HtmlWebpackPlugin({
filename:"index.html",
template:"index.html"
}),
new HtmlWebpackPlugin({
filename:"login.html",
template:"login.html"
}),
]
上一篇: Flutter连接iPad报错Developer Mode
本文标签
multiple assets emit different content to the same filename index.html
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。