Issue with `.prefix` not affecting `HttpApiGroup` endpoints in TypeScript server setup

Trying to recreate a http server from the example repo manually but for some reason can't figure out why can't I .prefix a HttpApiGroup - it basically doesn't affect the endpoints declared after. In this case the endpoint responds if I hit /, while /people returns a 404. Am I missing something?

export class PeopleApi extends HttpApiGroup.make("people")
  .prefix("/people")
  .add(HttpApiEndpoint.get("get", "/").addSuccess(Person))
  .annotate(OpenApi.Title, "People")
  .annotate(OpenApi.Description, "Manage people") {}
Was this page helpful?