boobam22
Results
2
comments of
boobam22
I think base means that app would be mounted at `example.com/api/v1`, so app ignore `/api/v1` when parsing route and add `/api/v1` (such as return redirect url) It also confuse me...
```ts import { Hono } from 'hono' import { basePath } from 'hono/route' import { fromHono, getSwaggerUI } from 'chanfana' const app = new Hono().basePath('/api') const openapi = fromHono(app) openapi.get('/home',...