autorisation CORS pour le docker front (localhost:8082)

pull/8/head
Clement FERRERE 3 years ago
parent 3ec4368324
commit dd91d465ac
  1. 3
      Collaborateur_Epa_Back/espacecollab.backend.api/Startup.cs

@ -38,7 +38,8 @@ namespace espacecollab.backend.api
app.UseDeveloperExceptionPage();
}
app.UseCors(
options => options.WithOrigins("http://localhost:4200").AllowAnyMethod().AllowAnyHeader()
options => options.WithOrigins("http://localhost:4200","http://localhost:8082").AllowAnyMethod().AllowAnyHeader()
) ;
app.UseSwagger();
app.UseSwaggerUI();

Loading…
Cancel
Save