html-webpack-pluginを使用して、webpack を使用して html ファイルを縮小します。
元の 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,
},
}),