Made adjustment to allow CORS.

This commit is contained in:
asofio 2022-02-18 16:05:33 +00:00 коммит произвёл GitHub
Родитель 098e1f2183
Коммит 914255e2ab
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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();