Hello, sorry to bother you, but could you tell me if it is possible to build a URL address in which the :city parameter will specify different cities, for example: /fly-to-amsterdam or /fly-to-paris
I tried to make a router like /fly-to-:city, but it works as a static address.
I tried to use wildcard params and then define the parameter using the regular expression router.get('*', (ctx) => {...}). This works but breaks the static.
The /fly-to/:city format works, but does not suit the customer.