You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

35 lines
730 B

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 {
}