Firebase deploy keeps giving me an Error: Parse Error in remoteconfig.template.json

Firebase deploy keeps giving me an Error: Parse Error in remoteconfig.template.json

我正在尝试使用 firebase 部署网络应用程序,但每次我 运行 部署时,我都会收到此错误

Error: Parse Error in remoteconfig.template.json:

No data, empty input at 1:1

^
File: "remoteconfig.template.json"

您在 firebase.json 文件中引用了 remoteconfig.template.json,但该模板不存在。这通常看起来像:

  "remoteconfig": {
    "template": "remoteconfig.template.json"
  }

解决方案是在您的 firebase.json 文件中找到此部分,然后将其删除。

您收到此错误是因为在您的 firebase init 中包含(或同意)远程配置。要使其与部署一起使用,您必须在文件中至少添加一个参数 remoteconfig.template.json ,如下所示;

{
    "example_minimum_score_for_level_2": 500
}

正如@BenjaminRAIBAUD 评论的那样,如果 remoteconfig.template.json 为空,请尝试将 { } 添加到文件中。这对我有用。