add autorecommect option

This commit is contained in:
Ryan Peters 2023-01-26 16:44:50 -05:00
parent 91b402deac
commit 4e310dc292

View File

@ -1,4 +1,7 @@
let connection = new signalR.HubConnectionBuilder().withUrl("/noteHub").build(); let connection = new signalR.HubConnectionBuilder()
.withAutomaticReconnect()
.withUrl("/noteHub")
.build();
let start = function () { let start = function () {