You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2020. It is now read-only.
Describe the Bug
Fragment route like #/login seems not working, there is a leading / in RouteService.get_route which causes mismatch, or even a leading /rust-yew-realworld-example-app/ if the website is hosted in a sub folder, e.g. https://jetli.github.io/rust-yew-realworld-example-app/
Describe the Bug
Fragment route like
#/loginseems not working, there is a leading/inRouteService.get_routewhich causes mismatch, or even a leading/rust-yew-realworld-example-app/if the website is hosted in a sub folder, e.g. https://jetli.github.io/rust-yew-realworld-example-app/For now, to use gh-pages to host the demo site, I have to fix the routing by:
https://github.com/jetli/rust-yew-realworld-example-app/blob/a99af18ec64ef74d6c3ac97419fc7de47eaa892d/crates/conduit-wasm/src/routes.rs#L29
https://github.com/jetli/rust-yew-realworld-example-app/blob/a99af18ec64ef74d6c3ac97419fc7de47eaa892d/crates/conduit-wasm/src/components/app.rs#L42