Last active
May 7, 2017 17:19
-
-
Save sonicparke/43b355f148d0dea6c7016547df46f2a9 to your computer and use it in GitHub Desktop.
Setting Up the Angular CLI in Visual Studio for Mac
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
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