tentatively remove cors (we don't need it)

This commit is contained in:
ig 2023-03-20 10:31:24 +01:00
parent 5ef49de742
commit 3613199917
1 changed files with 1 additions and 2 deletions

View File

@ -22,7 +22,6 @@ public static class Program
c.SupportNonNullableReferenceTypes();
});
var app = builder.Build();
if (app.Environment.IsDevelopment())
@ -31,7 +30,7 @@ public static class Program
app.UseSwaggerUI();
}
app.UseCors(p => p.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod()) ;
//app.UseCors(p => p.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod()) ;
app.UseHttpsRedirection();
//app.UseAuthorization();
app.MapControllers();