Open ihorlazarenko opened 8 months ago
In OP description, they mention "When InteractiveAuto render mode is used without prerendering, server rending is not started and Blazor hangs until wasm dlls are loaded." In our case, Blazor just hangs and never completes the load. It loads all the assemblies, but the page is never rendered. If you refresh the browser, then (because the wasm assemblies are already downloaded maybe?) it renders the page properly. We are using Microsoft.AspNetCore.Components.WebAssembly 8.0.1 on the client side and Microsoft.AspNetCore.Components.WebAssembly.Server 8.0.1 on the server side, and the same directive for the components: InteractiveAutoRenderMode(prerender:false)
Updated both client and server to 8.0.5, and the problem still persists.
Is there an existing issue for this?
Describe the bug
When InteractiveAuto render mode is used without prerendering, server rending is not started and Blazor hangs until wasm dlls are loaded.
Expected Behavior
When Blazor webassembly cache is empty server rendering should start no matter whether prerender is enabled or not.
Steps To Reproduce
@rendermode @(new InteractiveAutoRenderMode(prerender:false))
Exceptions (if any)
No response
.NET Version
8.0.203
Anything else?
No response