Configure CORS for Azure Functions Local Host
Configure CORS for Azure Functions Local Host
Configure CORS for Azure Functions Local Host
Re: Configure CORS for Azure Functions Local Host
You can start the host like this
```
func host start --cors *
```
You can also be more specific and provide a comma delimited list of allowed urls
More here: [https://github.com/Azure/azure-webjobs-sdk-script/issues/1012](https://github.com/Azure/azure-webjobs-sdk-script/issues/1012)
```
func host start --cors *
```
You can also be more specific and provide a comma delimited list of allowed urls
More here: [https://github.com/Azure/azure-webjobs-sdk-script/issues/1012](https://github.com/Azure/azure-webjobs-sdk-script/issues/1012)