I have a project structure similar to something like this:
app.module
–– dashboard.module
–– overview.module
–––– profile.module
–––––– favorites.module
What you see are four levels of feature modules. (Consider them to have also multiple components etc.)
What would be the best way of setting up routing for these modules?
I would set up a routing module for every module, like this: app-routing.module, dashboard-routing.module, overview-routing.module (...)
But is that considered as a good practice in Angular? If not, what should one do instead?