Vue-cli webpack打包之后index.html缺少引号的问题
Vue-cli webpack打包之后index.html缺少引号的问题
下面是通过webpack npm run build
打包之后生成的index.html文件,可以看到缺少引号
这里给出解决方案,亲测有效:
- 找到
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 },
- 重新打包
npm run build
即解决问题,重新打包的index.html文件如下
相关推荐
hline 2020-07-29
不知道该写啥QAQ 2020-07-18
helloxiaoliang 2020-06-21
不知道该写啥QAQ 2020-11-12
webfullStack 2020-11-09
Yvettre 2020-09-15
想做大牛的蜗牛 2020-10-30
gloria0 2020-10-26
gaojie0 2020-09-11
SelinaChan 2020-08-14
不知道该写啥QAQ 2020-08-09
gloria0 2020-08-09
不知道该写啥QAQ 2020-08-02
SelinaChan 2020-07-28
wangdianyong 2020-07-23
webpackvuees 2020-07-23
yqoxygen 2020-07-20
waterv 2020-07-18