Firebase Deploy Error: Authorization failed

前端 未结 7 1372
别跟我提以往
别跟我提以往 2021-02-05 00:51

I am trying the following firebase deploy command and I get the following error:

Error: Authorization failed. This account is missing the fol

7条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-05 01:35

    For me, this was due to having multiple sites. I changed the project name rather than the site name and therefor didn't have permissions.

    Your .firebaserc file points to the "project" within Firebase.

    {
      "projects": {
        "default": "my-project"
      }
    }
    

    While the firebase.json file points to the "site" within Firebase.

    {
      "hosting": {
        "site": "my-site"
      }
    }
    

提交回复
热议问题