UNI-APP 框架中解决打包后index.html文件中没有引号问题

问题

  1. 打包后index.html文件中src属性没有引号。
  2. 打包后修改默认相对路径为“./”,比如index.xxxx.js中的a.p属性值希望为“./”,默认为“/”。

问题一

  1. 在项目根目录下添加文件vue.config.js。
  2. 在文件中添加如下内容:
module.exports = {
	chainWebpack: config => {
	 const html = config.plugin('html-index');
	 html.tap(args => {
		 args[0].minify.removeAttributeQuotes = false;
		 return args;
	 })
	},
}

问题二

1.修改mainfest.json

, "h5" : {
	...,
	"router" : {
        "base" : "./"
    },
}
  1. 参考资料

https://ask.dcloud.net.cn/article/37432

你可能感兴趣的:(前端技术,uni-app,html,前端)