
and queryParamMap, tracing, and incidental improvements. closes #16991 and #16259 which it also fixes.
28 lines
841 B
TypeScript
28 lines
841 B
TypeScript
// #docregion
|
|
import { NgModule } from '@angular/core';
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
|
|
import { CrisisListComponent } from './crisis-list.component';
|
|
// import { HeroListComponent } from './hero-list.component'; // <-- delete this line
|
|
import { PageNotFoundComponent } from './not-found.component';
|
|
|
|
const appRoutes: Routes = [
|
|
{ path: 'crisis-center', component: CrisisListComponent },
|
|
// { path: 'heroes', component: HeroListComponent }, // <-- delete this line
|
|
{ path: '', redirectTo: '/heroes', pathMatch: 'full' },
|
|
{ path: '**', component: PageNotFoundComponent }
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forRoot(
|
|
appRoutes,
|
|
{ enableTracing: true } // <-- debugging purposes only
|
|
)
|
|
],
|
|
exports: [
|
|
RouterModule
|
|
]
|
|
})
|
|
export class AppRoutingModule {}
|