This is what I used to have: when a page is loaded, a JSON is read from the <body>
‘s data attribute and then parsed via JavaScript to populate the elements (components).
I want to create a Blazor Web App equivalent of that page. The problem is that setting the page’s render mode to Server and the components to WebAssembly causes a
Cannot create a component of type ... because its render mode 'Microsoft.AspNetCore.Components.Web.InteractiveWebAssemblyRenderMode' is not supported by interactive server-side rendering.
Setting all to WebAssembly works but I don’t want a delay on the frontend (I believe this will cause the runtime and stuff to be download first before rendering is done). Setting to Auto works too but I’m unsure if this is equivalent to what I want. What am I doing wrong?