首页 > Web开发 > 详细

Vue-cli webpack打包之后index.html缺少引号的问题

时间:2020-05-17 01:07:42      阅读:111      评论:0      收藏:0      [点我收藏+]

Vue-cli webpack打包之后index.html缺少引号的问题

下面是通过webpack npm run build打包之后生成的index.html文件,可以看到缺少引号

技术分享图片

这里给出解决方案,亲测有效:

  1. 找到webpack.prod.conf.js,在webpack.prod.conf.js找到minify(可以ctrl+F搜索minify),直接将整块(也就是以下这块儿)删除
    minify: {
        removeComments: true,
        collapseWhitespace: true,
        removeAttributeQuotes: true
        // more options:
        // https://github.com/kangax/html-minifier#options-quick-reference
      },
    
  2. 重新打包npm run build 即解决问题,重新打包的index.html文件如下
    技术分享图片

Vue-cli webpack打包之后index.html缺少引号的问题

原文:https://www.cnblogs.com/muzidaitou/p/12903040.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!