0
我使用html-webpack-plugin來使用webpack縮小html文件。html-webpack-plugin生成冗餘標籤
原始html文件只有<script src="./app.js"></script>
,但在我使用html-webpack-plugin縮小文件後,它生成<script src="./app.js"></script><script src="app.js"></script>
。 它插入冗餘<script src="app.js"></script>
。 我試過html-minifier提供的每個選項,但都沒有解決問題。
有誰知道如何解決這個問題?我的WebPack配置的
部分:
new HtmlWebpackPlugin({
template: 'app/main.html',
filename: 'index.html',
minify: {
collapseWhitespace: true,
removeComments: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
},
}),
文件'該插件會爲你生成一個HTML5文件,其中包括使用腳本tags'體內所有的WebPack包。因此,您可以從模板中移除'''。 –
非常感謝你!這解決了問題。 – tet