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"
  }]
}

你可能感兴趣的:(Error: 未找到入口 sitemap.json 文件,或者文件读取失败,请检查后重新编译。)