I have another question trying to resolve this here:Blazorise Layout ProblemThis question is to try to reduce it to the minimum to see if it can be done?
I need to use an interactive layout component with Blazor Server. This necessitates the InteractiveServer rendermode as global.
<HeadOutlet @rendermode="InteractiveServer" /> <Routes @rendermode="InteractiveServer" />So far so good, but I have a few WASM components (using timers etc that will thrash a SignalR connection) that currently and still should work with WASM.
So I have a choice as I see it, I can either; Abandon the Blazorise Layout and Themes, which is my main reason for using it. Switching to a Bootstrap methodology as per the Microsoft templates.Or, make the Blazorise Layout work interactively (by setting the InteractiveServer as the global render mode) and finding a way to add WebAssembly (WASM) to it.
I would obviously prefer the latter. Does anyone know if this is possible and if so how it can be done?