📄️ Router
Rover middleware needs a router to operate. Router is essentially an array of Route object.
📄️ Dynamic Routing
Dynamic routing is essential. In this section we will cover how to use Dynamic Path Parameter and also Query Parameter Parsing
📄️ Schematic Routes
Starting with version 1.0.13 we added a type of routes called schematic routes. A schematic or wildcard path is kind a like a templated path that will accept anything as a subroute.
📄️ Custom 404 Route
Making a custom 404 page is as easy as adding another route. Let's keep it simple and clean. Just add another route but this time with path of ` or /`, this path will serve as a 404 or default page when no page is found.