vue-cli webpack 打包后 index.html文件 引用缺少引号

webpack 打包后 打开index.html文件 发现引用文件的引号都被过滤了

<script type=text/javascript src=./static/js/js/app.js></script>

因此,需要在webpack.prod.conf.js 找到minify参数

讲 removeAttributeQuotes: true 改为  removeAttributeQuotes: false (如果该方法没有用那就把整个minify去掉再试一下)

再次 build之后,就会看到 index.html 中的css和js添加了引号

猜你喜欢

转载自blog.csdn.net/superKM/article/details/84848004