What happens with route data if I specify routes that are nested by path, but not as a routing tree. e.g.
[["/subpath" {:middleware [...]}]
["/subpath/more ....]]
Does the more path also get middleware?No it won’t. If you wanted inheritance like that, you would do something like this:
["/subpath" {:middleware [...]}
["" {:get ...}]
["/more" {:post ...}]]thanks