Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created June 29, 2020 22:27
Show Gist options
  • Select an option

  • Save PradeepLoganathan/3da2b70e7486cd92af297bff92aef240 to your computer and use it in GitHub Desktop.

Select an option

Save PradeepLoganathan/3da2b70e7486cd92af297bff92aef240 to your computer and use it in GitHub Desktop.
using different CORS policies
if (env.IsDevelopment())
{
app.UseCors(CORSPolicies.DevAPI);
}
else
{
app.UseCors(CORSPolicies.PublicAPI);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment