Evan Almloff
Evan Almloff
Hydration should be a lot more resilient in 0.5 which will make hydration issues more rare. Hydration should succeed now even if the browser or an extension modifies the HTML
If you check your task manager, are there any other instances of the dioxus cli running? I wonder if there is a conflict when two instances try to write to...
`dx serve` will rebuild your application when it notices any changes. `dx serve --hot-reload` will patch the rsx without recompiling when it notices any changes
This issue is still present in `0.5`. Here is an updated reproduction: ```rust #![allow(non_snake_case)] use dioxus::prelude::*; #[derive(Routable, Clone)] #[rustfmt::skip] enum Route { #[layout(NavBar)] #[route("/")] Home {}, #[nest("/blog")] #[layout(Blog)] #[route("/")] BlogList...
The documentation for 0.4 is [here](https://dioxuslabs.com/learn/0.4/getting_started/desktop#hot-reload)
Some additional information would be very helpful debugging this issue: - What does your code look like (preferably a minimal example) - What does your workspace file system look like?...
I can reproduce the liveview issue on `macos`. I see a flash of `compiling...` which should happen when `dioxus-cli` sees something that is not static rsx that is changed. I...
I can no longer reproduce the issue with this code on the main branch of dioxus: ```rust use dioxus::prelude::*; fn main() { tracing_subscriber::fmt::init(); launch(app); } #[component] pub fn app() ->...
@dxps Thanks for the reproduction. It looks like bumping dioxus to the git version of `0.5` fixes the issue: ```toml dioxus = { git = "https://github.com/DioxusLabs/dioxus", branch = "v0.5", features...
This should be resolved with the combination of fixes to manganis in https://github.com/DioxusLabs/manganis/pull/30 and Head elements added in #2635. You can install the git version of the CLI with: ```...