Replies: 2 comments
-
Prerending is the act of generating some HTML on the server alongside the logic (non-interactive) WebAssembly is using WebAssembly to add interactivity to the page. Auto chooses the best interactive mode ( server or WebAssembly) based on some criteria. Prerending is separate from that process |
Beta Was this translation helpful? Give feedback.
0 replies
-
Can't we make the main page stay in Blazor Server Interactive, but specifically for the chat page that requires SignalR authentication in WebAssembly ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I don’t think there is any difference in the current state. In Tim Corey’s video, you can see that even when InteractiveWebAssembly is specified, it still shows from server side and then switches to webassembly. But that’s what InteractiveAuto should do, not InteractiveWebAssembly. Here is the link to the video: Tim Corey’s video
Maybe I am missing something important?
--UPDATE--
I Searched on Bing (yes, that’s right. No hard feelings, Google) and found a post by @danroth27 that said this:
This means that prerendering is turned on by default, which I don’t think is a good idea. Shouldn’t it be off by default instead? Otherwise, how is it different?
Beta Was this translation helpful? Give feedback.
All reactions