зеркало из https://github.com/Azure/reddog-code.git
Made adjustment to allow CORS.
This commit is contained in:
Родитель
098e1f2183
Коммит
914255e2ab
|
@ -27,6 +27,7 @@ namespace RedDog.AccountingService
|
|||
|
||||
public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
services.AddCors();
|
||||
services.AddHttpClient();
|
||||
services.AddControllers().AddDapr();
|
||||
services.AddSwaggerGen(c =>
|
||||
|
@ -41,6 +42,13 @@ namespace RedDog.AccountingService
|
|||
if (env.IsDevelopment())
|
||||
{
|
||||
app.UseDeveloperExceptionPage();
|
||||
app.UseCors(builder =>
|
||||
{
|
||||
builder
|
||||
.AllowAnyOrigin()
|
||||
.AllowAnyMethod()
|
||||
.AllowAnyHeader();
|
||||
});
|
||||
}
|
||||
|
||||
app.UseSwagger();
|
||||
|
|
Загрузка…
Ссылка в новой задаче