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
I decided to use your library in a new project and discovered that if I have a route for /:name/tree/:ref/*path but the request path is only /foo/tree/main the route isn't matched and 404(s). I had to add an empty route for /:name/tree/:ref for things to work.
Can we make matching optional in this case? It seems logical that a *path indicate anything or nothing.
The text was updated successfully, but these errors were encountered:
I decided to use your library in a new project and discovered that if I have a route for
/:name/tree/:ref/*path
but the request path is only/foo/tree/main
the route isn't matched and 404(s). I had to add an empty route for/:name/tree/:ref
for things to work.Can we make matching optional in this case? It seems logical that a
*path
indicate anything or nothing.The text was updated successfully, but these errors were encountered: