Error: Failed to list functions for (ProjectName) in firebase

Viewed 24

When I am trying to host my angular application into firebase hosting I got below error even I selected specific project.

Error: Failed to list functions for (project-name)

Any help would be appreciable.

1 Answers

I resolved my issue by following the below steps.

  1. firebase init hosting
  2. Change the firestore.rules inside allow read, write: if request.auth !=null;
Related