<t>To set CORS working locally when you are not using CLI and you are using Visual Studio/ VS Code - you need to add local.settings.json file into your project if it's not there.<br/>
<br/>
Make sure "Copy to output directly" set to "copy if newer"<br/>
<br/>
<br/>
<br/>
Then in your "local.settings.json" you can add CORS": "*" like so: <br/>
<br/>
{<br/>
"IsEncrypted": false,<br/>
"Values": {<br/>
<br/>
},<br/>
"Host": {<br/>
"LocalHttpPort": 7071,<br/>
"CORS": "*"<br/>
}<br/>
}<br/>
<br/>
```<br/>
<br/>
More info:<br/>
[https://learn.microsoft.com/en-us/azure/azure-functions/functions-run-local](https://learn.microsoft.com/en-us/azure/azure-functions/functions-run-local)</t>