I seem to be having problems not getting my CORS header to be generated, I am basically invoking an XHR request from the hosted site (
ezpzrentals.com) to a web service deployed on
https://api.ezpzrentals.com, I continue to see the following error in the console...
"No 'Access-Control-Allow-Origin' header is present on the requested resource." Here are the contents of my firebase.json config file, any tips, info would be greatly appreciated. Thank you in advance!
{
"hosting": {
"public": "public",
"headers": [
{
"source": "**",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "*"
}
]
}
]
}
}