daviddm

Results 2 comments of daviddm

I'm using the same pattern and are experiencing the same issue. I have a fix that solves my setup. On `api.js:41` I add this ```javascript router.router.stack.forEach(function(stack) { this.apiRoutes.push({ route: {...stack,...

```typescript import { Router } from "koa-joi-router"; type Params = { rootRouter: Router; router: Router; path: string; }; export const addRouterToPath = (params: Params) => { const { router, rootRouter,...