projects
/
oweals
/
peertube.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b952dd
)
Avoid 404 title on the first page load
author
Chocobozzz
<me@florianbigard.com>
Thu, 28 Jun 2018 15:16:22 +0000
(17:16 +0200)
committer
Chocobozzz
<me@florianbigard.com>
Thu, 28 Jun 2018 15:16:22 +0000
(17:16 +0200)
client/src/app/app-routing.module.ts
patch
|
blob
|
history
diff --git
a/client/src/app/app-routing.module.ts
b/client/src/app/app-routing.module.ts
index 0b31bf453a821ed4579604649adb7893e08f61c8..30e615b3ed0a9158762cc32db7b3fd2ebd42609b 100644
(file)
--- a/
client/src/app/app-routing.module.ts
+++ b/
client/src/app/app-routing.module.ts
@@
-2,6
+2,7
@@
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { PreloadSelectedModulesList } from './core'
+import { AppComponent } from '@app/app.component'
const routes: Routes = [
{
@@
-24,6
+25,10
@@
const routes: Routes = [
path: 'about',
loadChildren: './+about/about.module#AboutModule'
},
+ {
+ path: '',
+ component: AppComponent // Avoid 404, app component will redirect dynamically
+ },
{
path: '**',
loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule'