|
|
|
@ -8,20 +8,20 @@ export const appRoutes: Routes = [ |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: 'account', |
|
|
|
loadChildren: () => import('@abp/ng.account').then(m => m.AccountModule.forLazy()), |
|
|
|
loadChildren: () => import('@abp/ng.account').then(m => m.createRoutes()), |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: 'identity', |
|
|
|
loadChildren: () => import('@abp/ng.identity').then(m => m.IdentityModule.forLazy()), |
|
|
|
loadChildren: () => import('@abp/ng.identity').then(m => m.createRoutes()), |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: 'tenant-management', |
|
|
|
loadChildren: () => |
|
|
|
import('@abp/ng.tenant-management').then(m => m.TenantManagementModule.forLazy()), |
|
|
|
import('@abp/ng.tenant-management').then(m => m.createRoutes()), |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: 'setting-management', |
|
|
|
loadChildren: () => |
|
|
|
import('@abp/ng.setting-management').then(m => m.SettingManagementModule.forLazy()), |
|
|
|
import('@abp/ng.setting-management').then(m => m.createRoutes()), |
|
|
|
}, |
|
|
|
]; |
|
|
|
|