I've got a PageModule
which reference itself in it's routing. It works if I remove the circular dependency, start the app and then add it again. But not if I stop the server and start it again with the circular dependency already there. How can I solve this?
I have this router module:
const routes: Routes = [
{
path: '',
component: PageComponent,
children: [
{
path: ':pageId',
loadChildren: 'app/routes/+dashboard/routes/+pages/routes/+page/page.module#PageModule'
}
]
}
];
@NgModule({
imports: [RouterModule.forChild(routes)]
})
export class PageRouterModule {}
Which is then imported into PageModule:
@NgModule({
imports: [
PageRouterModule
],
exports: [PageRouterModule],
declarations: [PageComponent]
})
export class PageModule {}
Apparently this was supposedly fixed as seen here, but I've upgraded to the latest cli version which is 1.5.0
but the issue is still there.