Error: 未找到入口 sitemap.json 文件,或者文件读取失败,请检查后重新编译。

问题:

解决方案:

1、在dist根目录下添加一个sitemap.json 文件

2、打开dist/sitemap.json文件将如下代码复制进去:

{
  "rules":[{
    "action": "allow",
    "page": "path/to/page",
    "params": ["a", "b"],
    "matching": "exact"
  }, {
    "action": "disallow",
    "page": "path/to/page"
  }]
}

相关链接参考:https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/sitemap.html

你可能感兴趣的:(前端)