]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/app-routing.module.ts
Merge branch 'release/beta-10' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / app-routing.module.ts
index 04c53548eb375999361ab90a478ed9964450bcaf..30e615b3ed0a9158762cc32db7b3fd2ebd42609b 100644 (file)
@@ -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 = [
   {
@@ -20,6 +21,14 @@ const routes: Routes = [
     path: 'video-channels',
     loadChildren: './+video-channels/video-channels.module#VideoChannelsModule'
   },
+  {
+    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'