My current usecase is simple, I just need to make a post request to a cloud function I have locally developed.
The catch is, when I fire
firebase serve
the hosting is deployed on localhost:5000
and cloud functions are deployed on localhost:5001
These both are from different origin as port is different. Thus, when the browser sends the initial preflight request, it fails with error message
Failed to load http://localhost:5001/projectname/region/sendEnquiry: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:5000' is therefore not allowed access.
How can I set the headers for testing this locally?(Again here I am not a pro, I am guessing I will have same origin when I decide to deploy in production. If not, anyways I will still need the solution)
Thanks.