Skip to content

Instantly share code, notes, and snippets.

@andrebaltieri
Created July 9, 2015 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrebaltieri/6c170e5a9b04e16a59a1 to your computer and use it in GitHub Desktop.
Save andrebaltieri/6c170e5a9b04e16a59a1 to your computer and use it in GitHub Desktop.
using Microsoft.Owin.Cors;
using Owin;
namespace ChatSample
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.UseCors(CorsOptions.AllowAll);
app.MapSignalR();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment