wiring/next-route
check: wiring/next-route · error_code: E-WIRE-003 · doctor exits: 1
What you’re seeing
Every request from the client to/api/vendo/* has nowhere to land. The app
builds and runs; the wire itself is absent.
Why
Doctor looked for the catch-all handler at exactlyapp/api/vendo/[...vendo]/route.ts or src/app/api/vendo/[...vendo]/route.ts
and found neither. Doctor checks only these two paths, so a handler mounted
somewhere else still fails this check.
The fix
Runnpx vendo init; it scaffolds the route for you.
app/api/vendo/[...vendo]/route.ts
npx vendo doctor once the file exists at the expected path.
Related errors
- E-WIRE-004: the route exists but nothing mounts the client provider
- E-WIRE-009: the route exists but server actions aren’t registered in it
- E-WIRE-006: the route exists but nothing visible reaches the agent