Skip to content

Instantly share code, notes, and snippets.

@sonicparke
Last active May 7, 2017 17:19
Show Gist options
  • Save sonicparke/43b355f148d0dea6c7016547df46f2a9 to your computer and use it in GitHub Desktop.
Save sonicparke/43b355f148d0dea6c7016547df46f2a9 to your computer and use it in GitHub Desktop.
Setting Up the Angular CLI in Visual Studio for Mac
services.AddCors(options =>
{
options.AddPolicy("CorsPolicy",
builder => builder.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader()
.AllowCredentials());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment