Created
January 3, 2023 03:18
-
-
Save taylorhutchison/c388f5da6941298c32c96f9709ee1c8a to your computer and use it in GitHub Desktop.
Allow CORS when running Azure Functions locally
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"IsEncrypted": false, | |
"Values": { | |
"AzureWebJobsStorage": "UseDevelopmentStorage=true", | |
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated" | |
}, | |
"Host": { | |
"CORS": "*" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment