I am create API with firebase via this tutorial here.
On I run:
firebase deploy
I get this error on the command line:
1st Downgrade node version from 10 to 8 on package.json
"engines": {
"node": "8"
}
firebase deploy
you'll get + Deploy complete! message above that you'll see
+ functions[helloWorld(us-central1)]: Successful update operation.
this us-central is my project hosted region in your case may be differ
prefix to this region [helloWorld is my exported function name your case it may differ get this information from your terminal by firebase deploy command
After that your hosted project link will be
https://yourregion-firebaseprojectname.cloudfunctions.net/yourexportedfunctionname
(exported function name) which is helloWorld