I tried to deploy my project On Firebase with spark plan but i got this error: Error: Your project facebookfirebaseclone must be on the Blaze (pay-as-you-go) plan to complete this command. Required API cloudbuild.googleapis.com can't be enabled until the upgrade is complete. To upgrade, visit the following URL: Is there are Free Ways to host my project using firebase
1
votes
2 Answers
0
votes
0
votes
Firebase Cloud Functions now require your project to be on the blaze plan. So you won't be able to deploy them unless you upgrade the plan. However, you can just deploy your site on Firebase hosting using the following command.
firebase deploy --only hosting
Use firebase deploy --help
, for more info.