06‐Not Found Page - zhamri/stiwk2124-Angular-Route GitHub Wiki

app.routes.ts

import {NotFound} from './not-found/not-found';

export const routes: Routes = [
  {
    path: '',
    redirectTo: 'home',
    pathMatch: 'full',
  },
  {
    path: 'home',
    component: Home,
  },
  {
    path: 'login',
    component: Login,
  },
  {
    path: '**',
    component: NotFound,
  },
];

Must put at the bottom