vue-cli webpack打包后index.html引入文件没有引号

在对vue-cli项目打包后出现index.html引入的css和js没有引号 即:

<link href=/css/xxx.css rel=stylesheet>

解决办法:

找到webpack.prod.conf.js,在webpack.prod.conf.js找到minify

把minify中的  removeAttributeQuotes: true改为

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

然后在执行打包命令:npm run build

执行完打包后index.html中的css和js引入时就会有引号

<link href="/css/xxx.css" rel="stylesheet">


猜你喜欢

转载自blog.csdn.net/i_coffer/article/details/81005733
今日推荐