-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
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
Prevent router from some paths #325
Comments
A community member has suggested a solution:
ToDo:
|
Are we sure about the attribute name? I feel that's it is too long. How about just |
Yep, <a href="/admin" ignore>Admin</a> Should this link be ignored? Some other options I have in mind are:
Would any of these be better? |
The reason I lean towards |
Hi, Can anyone help with a bit of guidance how to ignore navigating from 1html file to another from being picked up by the router ? |
How to prevent router to intercept some paths?
Example:
My landing page use Vaadin Router, but I also have a
/documentation
path that I don't want to be handled by the router, because the documentation is another static app.With the current behavior, and using the fallback route (
path: '(.*)'
), when you click on a documentation link (<a href="/documentation">Documentation</a>
), you see the fallback route instead of the documentation static app.The text was updated successfully, but these errors were encountered: