Slide 38
Slide 38 text
twitter.com/mgechev
app-routing.module.ts
pseudo code
const module = 'settings.module.js';
const path = './settings';
const routes: Routes = [
{
path: 'profile/:id',
loadChildren: './profile/profile.module.js'
},
{
path: 'settings',
loadChildren: path + '/' + module,
}
];