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

青春壹個敷衍的年華 提交于 2021-02-08 23:34:46

问题


I am trying to deploy a web app with firebase but every time I run deploy I keep getting this error

Error: Parse Error in remoteconfig.template.json:

No data, empty input at 1:1

^
File: "remoteconfig.template.json"

回答1:


You have a reference to a remoteconfig.template.json in your firebase.json files, but that template doesn't exist. This will typically look like:

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

The solution is to find this section in your firebase.json file, and remove it.



来源:https://stackoverflow.com/questions/64728490/firebase-deploy-keeps-giving-me-an-error-parse-error-in-remoteconfig-template-j

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!