When i generate my API Clients with the io.quarkiverse.openapi.generator in Quarkus he automaticly puts in http://localhost/myapi/rest/v1 into the baseuri . Can I somehow make this configurable during generation since the api doesn’t know its servers?
@Path("/partner")
@RegisterRestClient(baseUri="http://localhost/myapi/rest/v1", configKey="myapi_yaml")
@GeneratedClass(value="myapi.yaml", tag = "Myapi")
@RegisterProvider(CompositeAuthenticationProvider.class)
@RegisterClientHeaders(AuthenticationPropagationHeadersFactory.class)
@ApplicationScoped
public interface MyApiApi