Closed jdon closed 1 year ago
When using this template and running cargo leptos watch, the project builds and runs but when clicking on the Click Me button nothing happens.
cargo leptos watch
Click Me
I think this commit caused the issue as it removed hydrate as a default feature in app without enabling the feature in the frontend crate.
hydrate
This PR enable the hydrate feature for the app in the frontend crate.
When using this template and running
cargo leptos watch
, the project builds and runs but when clicking on theClick Me
button nothing happens.I think this commit caused the issue as it removed
hydrate
as a default feature in app without enabling the feature in the frontend crate.This PR enable the
hydrate
feature for the app in the frontend crate.