We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, only URL variables (i.e. path/:id) are parsed. See, how to treat more advanced patterns, like path/(:id), or /**/*.jpg
path/:id
path/(:id)
/**/*.jpg
The text was updated successfully, but these errors were encountered:
in v0.0.6a all routes with '*' (asterisk) in path are ignored (no navigation function creation)
Sorry, something went wrong.
since v0.07a optional path variables, e.g path/(:var) are considered
path/(:var)
No branches or pull requests
Currently, only URL variables (i.e.
path/:id
) are parsed. See, how to treat more advanced patterns, likepath/(:id)
, or/**/*.jpg
The text was updated successfully, but these errors were encountered: