import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; const routes: Routes = [ { path: 'log', loadChildren: './log/log.module#LogModule' }, { path: 'subscribe', loadChildren: './subscribe/subscribe.module#SubscribeModule' }, { path: '', redirectTo: 'log', pathMatch: 'full' }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], exports: [RouterModule] }) export class SystemRoutingModule { }