Created
August 22, 2021 14:01
-
-
Save babaktaremi/e4e0433b1dc8a7ffcbd010b0761665f9 to your computer and use it in GitHub Desktop.
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("ApiCorsPolicy", | |
builder => builder | |
.AllowAnyMethod() | |
.AllowAnyHeader() | |
.AllowCredentials() | |
.WithOrigins("http://localhost:5200") | |
.SetPreflightMaxAge(TimeSpan.FromHours(1))); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment