123456789101112131415161718192021222324 |
- import { NgModule } from '@angular/core';
- import { RouterModule } from '@angular/router';
- import { errorRoute, navbarRoute } from './layouts';
- import { DEBUG_INFO_ENABLED } from 'app/app.constants';
-
- const LAYOUT_ROUTES = [navbarRoute, ...errorRoute];
-
- @NgModule({
- imports: [
- RouterModule.forRoot(
- [
- ...LAYOUT_ROUTES,
- {
- path: 'admin',
- loadChildren: './admin/admin.module#ZipConnectAdminModule'
- }
- ],
- { useHash: true, enableTracing: DEBUG_INFO_ENABLED }
- )
- ],
- exports: [RouterModule]
- })
- export class ZipConnectAppRoutingModule {}
|