Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created November 30, 2018 12:22
services.AddCors(options =>
{
options.AddPolicy("AllowAllOrigins",
builder =>
{
builder
.AllowAnyOrigin()
.AllowAnyHeader()
.AllowAnyMethod()
.AllowCredentials();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment