404

Generate a new component: page-not-found

ng g c components/page-not-found --skipTests true

app.module.ts

const appRoutes: Routes = [
...
   { path: 'not-found', component: PageNotFoundComponent },
   { path: '**', redirectTo: '/not-found' }
];
Was this page helpful?