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
Situation:
I have initial routes set up on app load. I add some additional routes dynamically based on a configuration using add-route!. I noticed that since I defined a catch-all in the initial routes, namely /*, that this gets matched on before any of the dynamically added routes. I assume this is because the vector of routes is in insertion order?
Is there a way to handle dynamic ordering in the library that I'm not seeing? Or do I need to manipulate the *routes* directly for now?
The text was updated successfully, but these errors were encountered:
Situation:
I have initial routes set up on app load. I add some additional routes dynamically based on a configuration using
add-route!
. I noticed that since I defined a catch-all in the initial routes, namely/*
, that this gets matched on before any of the dynamically added routes. I assume this is because the vector of routes is in insertion order?Is there a way to handle dynamic ordering in the library that I'm not seeing? Or do I need to manipulate the
*routes*
directly for now?The text was updated successfully, but these errors were encountered: