Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created November 14, 2017 05:10
Embed
What would you like to do?
ASP.NET Core SignalR chat with Angular 5 - https://codingblast.com/asp-net-core-signalr-chat-angular
services.AddCors(o => o.AddPolicy("CorsPolicy", builder =>
{
builder
.AllowAnyMethod()
.AllowAnyHeader()
.WithOrigins("http://localhost:4200");
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment