I\'m trying to use SignalR with MVC bundle, but having problem finding out how to include the /signalr/hubs script into the bundle. For now I have to insert the path in betw
A bit late, but here is my contribution: Create a javascript file with the following contents:
(function ($) { $.ajax({ url: "/signalr/hubs", dataType: "script", async: false }); }(jQuery));
Then add the file to the bundles collection. This will load the "/signalr/hubs" code for you.