My page is setup with a router-outlet. There is one of these that serves all the components in a sidebar navigation and I keep having to go to the same component to add more routes.
I would like to be able to let components define the routes so each component can encapsulate this information based on their own template.
The problem I've run into is that if I specify routes at the component level they are dependent on me adding an additional router-outlet because they are seen as child routes. I'd like to know if there is a configuration option to specify which router-outlet any given route should target if available.
thanks for any assistance.