import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { SpmComponent } from './spm/spm.component'; import { PageNotFoundComponent } from './page-not-found/page-not-found.component'; const routes: Routes = [ { path: 'spm', component: SpmComponent }, { path: '', redirectTo: '/spm', pathMatch: 'full' }, { path: '**', component: PageNotFoundComponent } ]; @NgModule({ imports: [RouterModule.forRoot(routes)], exports: [RouterModule] }) export class AppRoutingModule { }