I have an API module, and it uses the RouterModule to prefix all controllers with /api. I have another module called DocModule, and it prefixes all of its controllers with /doc.
I want to nest the DocModule inside the API Module, so that all of the endpoints of the DocModule become /api/doc.
How can I do this without the DocModule knowing about the /api prefix?