Created
January 28, 2020 14:43
-
-
Save pwelter34/dc44db13d6b87aff223e21fba05a6d84 to your computer and use it in GitHub Desktop.
fix blazor startup to not require sticky sessions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="~/_framework/blazor.server.js" autostart="false" asp-append-version="true"></script> | |
<script> | |
Blazor.start({ | |
configureSignalR: function (builder) { | |
builder.withUrl('_blazor', { | |
skipNegotiation: true, | |
transport: 1 | |
}); | |
builder.configureLogging(1); | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment