I\'m trying to call a callable Cloud Function from my app, but I\'m facing CORS issues.
I can\'t enable Cors since I don\'t have access to the request and response
For those facing this error after enabling firebase on an existing GCloud project, there is some complexity which is not taken care of automatically as it would be if it were just a firebase app.
I had this specific problem because I wanted my firebase function to be publicly accessible, but you have to specifically configure this if you're using google's Cloud Functions.
Here are the steps to fix:
Cheers