tentatively remove cors (we don't need it)
This commit is contained in:
parent
5ef49de742
commit
3613199917
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue