|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import { NgModule } from '@angular/core';
- import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
-
- const routes: Routes = [
- {
- path: '',
- loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule)
- },
- {
- path: 'home',
- loadChildren: () => import('./home/home.module').then( m => m.HomePageModule)
- },
- {
- path: 'live',
- loadChildren: () => import('./live/live.module').then( m => m.LivePageModule)
- },
- {
- path: 'home-details',
- loadChildren: () => import('./home-details/home-details.module').then( m => m.HomeDetailsPageModule)
- },
- {
- path: 'player-stats',
- loadChildren: () => import('./player-stats/player-stats.module').then( m => m.PlayerStatsPageModule)
- },
- {
- path: 'booking',
- loadChildren: () => import('./booking/booking.module').then( m => m.BookingPageModule)
- },
- {
- path: 'booking-details',
- loadChildren: () => import('./booking-details/booking-details.module').then( m => m.BookingDetailsPageModule)
- },
- {
- path: 'match-details',
- loadChildren: () => import('./match-details/match-details.module').then( m => m.MatchDetailsPageModule)
- },
- {
- path: 'chat',
- loadChildren: () => import('./chat/chat.module').then( m => m.ChatPageModule)
- },
- {
- path: 'collections',
- loadChildren: () => import('./collections/collections.module').then( m => m.CollectionsPageModule)
- },
- {
- path: 'add-party',
- loadChildren: () => import('./add-party/add-party.module').then( m => m.AddPartyPageModule)
- },
- {
- path: 'ar-fan-cam',
- loadChildren: () => import('./ar-fan-cam/ar-fan-cam.module').then( m => m.ArFanCamPageModule)
- },
- {
- path: 'quiz',
- loadChildren: () => import('./quiz/quiz.module').then( m => m.QuizPageModule)
- },
- {
- path: 'shop',
- loadChildren: () => import('./shop/shop.module').then( m => m.ShopPageModule)
- },
- {
- path: 'fan-zone',
- loadChildren: () => import('./fan-zone/fan-zone.module').then( m => m.FanZonePageModule)
- },
- ];
- @NgModule({
- imports: [
- RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules })
- ],
- exports: [RouterModule]
- })
- export class AppRoutingModule {}
|