method HonoBase.prototype.basePathimport { HonoBase } from "https://dotland.deno.dev/x/hono@v4.2.6/hono-base.ts"; basePath<SubPath extends string>(path: SubPath): Hono<E, S, MergePath<BasePath, SubPath>>.basePath() allows base paths to be specified. ExamplesExample 1 const api = new Hono().basePath('/api') Type ParametersSubPath extends stringParameterspath: SubPathReturnsHono<E, S, MergePath<BasePath, SubPath>>