✅ Blazor on .NET 8: how to disable static prerender and return to .net 7 behavior
I have created a new blazor 8 project with wasm interactivity and Identity pages (that use Blazor ssr).
When I navigate from account pages to any client page, app attempts to pre-render them with ssr while loading wasm.
This behavior is not wanted since my pages have some logic that cannot be reproduced on server (like loading server file as string for future manipulations)
With Blazor on .net 7 with duende it worked so any navigation from Identity pages to client triggered wasm loading animation which I am totally fine with.
How do I reimplant .net 7 behavior in .net 8 Blazor?
When I navigate from account pages to any client page, app attempts to pre-render them with ssr while loading wasm.
This behavior is not wanted since my pages have some logic that cannot be reproduced on server (like loading server file as string for future manipulations)
With Blazor on .net 7 with duende it worked so any navigation from Identity pages to client triggered wasm loading animation which I am totally fine with.
How do I reimplant .net 7 behavior in .net 8 Blazor?