Open luke-ff opened 5 years ago
Tested with chrome and Pace 1.0.2:
This leads to issues when reconnecting WebSockets: Creating a new Websocket triggers Pace.restart, and the request will be watched multiple times.
I think you have to add below pace options then it will not track Websocket. window.paceOptions = { ajax: { ignoreURLs: ['signalr', '__browserLink', 'browserLinkSignalR'], trackWebSockets: false } }
window.paceOptions = { ajax: { ignoreURLs: ['signalr', '__browserLink', 'browserLinkSignalR'], trackWebSockets: false } }
Tested with chrome and Pace 1.0.2:
This leads to issues when reconnecting WebSockets: Creating a new Websocket triggers Pace.restart, and the request will be watched multiple times.