natario1
05/31/2022, 6:47 PMdefaultRequest { }
to configure the base URL for our backend, like https://backend.com , then do things like get("users")
.
If the base url has a segment though, like https://backend.com/v1 . v1 is ignored in get("users")
will still hit https://backend.com/users. I kind of get why this happens but is there any way to make it work?e5l
05/31/2022, 6:47 PM<https://backend.com/v1/>
instead?natario1
05/31/2022, 6:54 PMe5l
05/31/2022, 6:55 PMRustam Siniukov
05/31/2022, 7:03 PMDefaultRequest
plugin