Replies: 1 comment
-
Ok, based on https://www.solidjs.com/tutorial/async_transitions I assume it's intended behaviour... Probably it should be explicitly documented? Resourve/Suspend/Router/Transition relationships are quite tricky... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi. I'm not sure if this is intended behavior or not. I'm using
Suspense
to wrap my routes. It works perfectly on the initial load, but on navigation, it blocks navigation until all resources are resolved. It's probably what I would want to have for SSR, but I'm doing SPA, and the expected behaviour is thatSuspense
reactively usefallback
, as it does without the router. Here is a reproducer:https://stackblitz.com/edit/solidjs-templates-lhwx9r?file=src%2FApp.tsx
Beta Was this translation helpful? Give feedback.
All reactions