网络营销官网广东百度seo
问题
- 打包后index.html文件中src属性没有引号。
- 打包后修改默认相对路径为“./”,比如index.xxxx.js中的a.p属性值希望为“./”,默认为“/”。
问题一
- 在项目根目录下添加文件vue.config.js。
- 在文件中添加如下内容:
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" : "./"},
}
- 参考资料
https://ask.dcloud.net.cn/article/37432