import { Routes } from '@angular/router'; import { AppComponent } from './app.component'; export const routes: Routes = [ { path: '', redirectTo: 'data-store', pathMatch: 'full' }, { path: 'data-store', loadChildren: './dbm.data.store.module.wrapper#DBMDataStoreModuleWrapper' } ];