|
@@ -1,63 +1,67 @@
|
|
|
-import { HttpClientModule } from '@angular/common/http';
|
|
|
-import { NgModule } from '@angular/core';
|
|
|
-import { PreloadAllModules, RouteReuseStrategy, RouterModule, Routes } from '@angular/router';
|
|
|
-import { IonicRouteStrategy } from '@ionic/angular';
|
|
|
-
|
|
|
-export const routes: Routes = [
|
|
|
- {
|
|
|
- path: '',
|
|
|
- loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'story-generator',
|
|
|
- loadComponent: () => import('./story-generator/story-generator.page').then(m => m.StoryGeneratorPage)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'toolbox',
|
|
|
- loadComponent: () => import('./toolbox/toolbox.page').then(m => m.ToolboxPage)
|
|
|
- },
|
|
|
- {
|
|
|
- path: '',
|
|
|
- loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'register',
|
|
|
- loadComponent: () => import('./register/register.page').then(m => m.RegisterPage)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'login',
|
|
|
- loadComponent: () => import('./login/login.page').then(m => m.LoginPage)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'short-generator',
|
|
|
- loadComponent: () => import('./short-generator/short-generator.page').then(m => m.ShortGeneratorPage)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'short-novel',
|
|
|
- loadComponent: () => import('./short-novel/short-novel.page').then(m => m.ShortNovelPage)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'character',
|
|
|
- loadComponent: () => import('./character/character.page').then( m => m.CharacterPage)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'character-creator',
|
|
|
- loadComponent: () => import('./character-creator/character-creator.page').then(m => m.CharacterCreatorPage)
|
|
|
+import { HttpClientModule } from '@angular/common/http';
|
|
|
+import { NgModule } from '@angular/core';
|
|
|
+import { PreloadAllModules, RouteReuseStrategy, RouterModule, Routes } from '@angular/router';
|
|
|
+import { IonicRouteStrategy } from '@ionic/angular';
|
|
|
+
|
|
|
+export const routes: Routes = [
|
|
|
+ {
|
|
|
+ path: '',
|
|
|
+ loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'story-generator',
|
|
|
+ loadComponent: () => import('./story-generator/story-generator.page').then(m => m.StoryGeneratorPage)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'toolbox',
|
|
|
+ loadComponent: () => import('./toolbox/toolbox.page').then(m => m.ToolboxPage)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '',
|
|
|
+ loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'register',
|
|
|
+ loadComponent: () => import('./register/register.page').then(m => m.RegisterPage)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'login',
|
|
|
+ loadComponent: () => import('./login/login.page').then(m => m.LoginPage)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'short-generator',
|
|
|
+ loadComponent: () => import('./short-generator/short-generator.page').then(m => m.ShortGeneratorPage)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'short-novel',
|
|
|
+ loadComponent: () => import('./short-novel/short-novel.page').then(m => m.ShortNovelPage)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'character',
|
|
|
+ loadComponent: () => import('./character/character.page').then( m => m.CharacterPage)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'character-creator',
|
|
|
+ loadComponent: () => import('./character-creator/character-creator.page').then(m => m.CharacterCreatorPage)
|
|
|
+ },
{
|
|
|
+ path: 'content-generator',
|
|
|
+ loadComponent: () => import('./content-generator/content-generator.page').then( m => m.ContentGeneratorPage)
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-];
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-@NgModule({
|
|
|
- imports: [RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules }), HttpClientModule],
|
|
|
- exports: [RouterModule],
|
|
|
- providers: [
|
|
|
- { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
|
|
|
- ],
|
|
|
-})
|
|
|
-export class AppRoutingModule { }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+];
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+@NgModule({
|
|
|
+ imports: [RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules }), HttpClientModule],
|
|
|
+ exports: [RouterModule],
|
|
|
+ providers: [
|
|
|
+ { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
|
|
|
+ ],
|
|
|
+})
|
|
|
+export class AppRoutingModule { }
|