Slide 78
Slide 78 text
• hapi searches paths in order from most specific to least
specific.
• If you have two routes, /filename.jpg and /filename.{ext}
a request to /filename.jpg will match the first route, and
not the second, whatever their order is in code.
• That also mean, a route with the path /{files*} will be the
last route tested, and will only match if all other routes fail.