add default 404 page

This commit is contained in:
Peter Maquiran
2023-12-06 13:14:41 +01:00
17 changed files with 411 additions and 476 deletions
+4 -1
View File
@@ -414,7 +414,10 @@ const routes: Routes = [
},
{ path: '**', redirectTo: '/', pathMatch: 'full' },
{
path: '**',
loadChildren: ()=> import('../pages/not-found/not-found.module').then(m => m.NotFoundPageModule),
},
];
@NgModule({