1
0
Fork 0
This commit is contained in:
Chocobozzz 2018-05-31 14:43:48 +02:00
parent a51bad1acc
commit a961477666
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ import { PageNotFoundComponent } from './page-not-found.component'
const pageNotFoundRoutes: Routes = [ const pageNotFoundRoutes: Routes = [
{ {
path: '', path: '',
component: PageNotFoundComponent, component: PageNotFoundComponent
} }
] ]

View File

@ -10,7 +10,7 @@ import { PageNotFoundRoutingModule } from '@app/+page-not-found/page-not-found-r
], ],
declarations: [ declarations: [
PageNotFoundComponent, PageNotFoundComponent
], ],
exports: [ exports: [

View File

@ -59,7 +59,7 @@ export function metaFactory (serverService: ServerService): MetaLoader {
deps: [ ServerService ] deps: [ ServerService ]
}), }),
AppRoutingModule, // Put it after all the module because it has the 404 route AppRoutingModule // Put it after all the module because it has the 404 route
], ],
providers: [ ] providers: [ ]
}) })