import { ModuleWithProviders } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { Home, PageNotFound } from './../ui/views/index'; const appRoutes: Routes = [ { path: '', component: Home }, { path: '**', component: PageNotFound } ]; export const appRoutingProviders: any[] = [ ]; export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes);