参考地址:https://blog.csdn.net/i_coffer/article/details/81005733

在对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">

相关文章:

  • 2022-12-23
  • 2022-01-27
  • 2021-05-29
  • 2021-10-25
  • 2022-12-23
  • 2021-07-17
  • 2021-09-22
猜你喜欢
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2021-07-10
  • 2022-12-23
  • 2021-05-09
相关资源
相似解决方案