Otto Chrons
Otto Chrons
@ealmloff here are some relevant snippets from my code, which hopefully are enough to build a minimal reproduction. Startup code ```rust fn main() { #[cfg(feature = "web")] main_client(components::App); #[cfg(feature =...
It's not only at the end of a block. This works fine when formatted ```rust rsx! { //document::Link { rel: "stylesheet", href: asset!("/public/tailwind.css") } div { class: "flex flex-col justify-center...
I ran into this exact same problem with alpha.5 release. Adding an artificial delay solved this, but it's no real solution. There are also other hydration errors when using `document::Link`...
This happens if loading the WASM takes longer than calling the server function. Tested with #3240 and it does fix the problem for me.
In Cargo.toml there is an unused `spec` feature, which should be renamed to `endpoint-spec` to make it work.