Skip to content

Commit ebc82ca

Browse files
committed
fix: show not found page
1 parent e154edb commit ebc82ca

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/app/app-routing.module.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { NgModule } from '@angular/core';
22
import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
3+
import { NotFoundPage } from './@containers/not-found/not-found.page';
34
import { AuthGuard, NoAuthGuard } from './@core/guards';
45
import { Path } from './@core/structs';
56

@@ -55,6 +56,7 @@ const routes: Routes = [
5556
import('@containers/not-found/not-found.module').then(
5657
(m) => m.NotFoundModule
5758
),
59+
component: NotFoundPage,
5860
},
5961
];
6062

0 commit comments

Comments
 (0)