hackartist
hackartist
> > ```rust > > #[cfg(feature = "web")] > > dioxus_web::launch::launch(App, vec![], dioxus_web::Config::new().hydrate(true)); > > > > #[cfg(feature = "server")] > > dioxus::launch(App); > > ``` > > If you...
@ealmloff currently, all of our code use `use_resource` instead of `use_server_future`. I will share minimal code for this issue within 10 days. But I may should invite you my private...
@ealmloff I found out the minimal code and the reason of the panic but not fix yes. The below code is the minimal code to reproduce hydration error. Consequently, `awating...
@ealmloff https://github.com/hackartists/dx-hydration-err this repository is for reproduction of hydration error with docker and the minimal code. Only you can run it with `make run`
> Seem to be hitting this on `0.6.0-rc.0`, any workarounds?.. Refer to the above conversation to see workarounds https://github.com/DioxusLabs/dioxus/issues/3041#issuecomment-2511699509 There are two worksarounds; - Make a call with `reqwest` with...