diff --git a/src/Events/Startup.cs b/src/Events/Startup.cs index 6d905f0bed..aec54cc683 100644 --- a/src/Events/Startup.cs +++ b/src/Events/Startup.cs @@ -105,7 +105,7 @@ namespace Bit.Events app.UseDefaultMiddleware(env); // Add Cors - app.UseCors("All"); + app.UseCors(policy => policy.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader().AllowCredentials()); // Add authentication to the request pipeline. app.UseAuthentication();