reitit

2024-07-15T10:29:36.872549Z

is there any way to have a regex in the routes? I have something like

["/v2" 
    ["" some-handler]
    [":full-url" main-handler]]])
because the full-url contains / and I would like to not do the parsing with reitit, since it's a bit too complicated to do with reitit

Leo E 2024-07-15T11:19:47.762759Z

Hi. If i understand your problem correctly, maybe https://github.com/metosin/reitit/blob/5589328a3cff4051fa272008d8c944ff74563597/doc/ring/slash_handler.md?plain=1#L27 could help?