{ "$schema": "https://turborepo.com/microfrontends/schema.json" "applications": { "web": { "development": { "local": 3000 } }, "docs": { "development": { "local": 3001 }, "routing": [ { "paths": ["/docs", "/docs/:path*"] } ] } } } Just run turbo dev. In this configuration, your docs app runs its development server on localhost:3001 and will handle requests for /docs and all nested paths in /docs.

