π Home
CUSTOMIZE A TEMPLATE β±
LEARN VOLTAPP
CREATE YOUR 1rst APP
GO FURTHER
Webhooks integration (Make, Zapierβ¦): ex Notion
REFERENCE
HELP
COMMUNITY
π Our discord
π Marketpad
The route node works the same way as the screen node. It is for websites since it allows to display content based on the browser url.
Router is the parent node in other Routes.
You indicate here the base URL of your site; ex: www.exemple.com.
Routes will be the children of Router.
You indicate here the path of the page to display; ex: www.exemple.com/home; www.exemple.com/contact.
Exact indicates that the url must match exactly the one of the browser (if for example the path of this route is "/login", if a user goes on "/loginator" and exact is false, then it will match and display the content of this route).
Strict: indicates that the url must contain a final "/" ("/login" will not match, but "/login/" will)
Case sensitive: if true, then case is taken into account for matching (if a user goes to "/Login" and case sensitive is true, then it will not match).