diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index e9eed48a2..ecba2982f 100644 --- a/apps/client/src/app/app-routing.module.ts +++ b/apps/client/src/app/app-routing.module.ts @@ -37,6 +37,13 @@ const routes: Routes = [ loadChildren: () => import('./pages/admin/admin-page.module').then((m) => m.AdminPageModule) }, + ...['alternatives'].map((path) => ({ + path, + loadChildren: () => + import('./pages/alternatives/alternatives-page.module').then( + (m) => m.AlternativesPageModule + ) + })), { path: 'auth', loadChildren: () => diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index 3eafe89ad..fe3e6fcb8 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -45,7 +45,8 @@