import { NgModule } from '@angular/core';
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
|
|
import { PageNotFoundComponent } from './page-not-found.component';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
pathMatch: 'prefix',
|
|
loadChildren: (): Promise<any> => import('./implementation/implementation.module').then(m => m.ImplementationModule)
|
|
},
|
|
{
|
|
path: '**',
|
|
component: PageNotFoundComponent
|
|
}
|
|
];
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forRoot(
|
|
routes,
|
|
{ relativeLinkResolution: 'legacy' }
|
|
// , { enableTracing: true } // debugging purposes only
|
|
),
|
|
],
|
|
declarations: [
|
|
PageNotFoundComponent
|
|
],
|
|
exports: [
|
|
RouterModule
|
|
]
|
|
})
|
|
export class AppRoutingModule {
|
|
}
|