|
|
|
|
@ -4,7 +4,13 @@ import { registerLocale } from '@abp/ng.core/locale';
|
|
|
|
|
import { IdentityConfigModule } from '@abp/ng.identity/config';
|
|
|
|
|
import { SettingManagementConfigModule } from '@abp/ng.setting-management/config';
|
|
|
|
|
import { TenantManagementConfigModule } from '@abp/ng.tenant-management/config';
|
|
|
|
|
//<TEMPLATE-REMOVE IF-NOT='BASIC'>
|
|
|
|
|
import { ThemeBasicModule } from '@abp/ng.theme.basic';
|
|
|
|
|
//</TEMPLATE-REMOVE>
|
|
|
|
|
//<TEMPLATE-REMOVE IF-NOT='LEPTONX-LITE'>
|
|
|
|
|
import { ThemeLeptonXModule } from '@abp/ng.theme.lepton-x';
|
|
|
|
|
import { SideMenuLayoutModule } from '@abp/ng.theme.lepton-x/layouts';
|
|
|
|
|
//</TEMPLATE-REMOVE>
|
|
|
|
|
import { ThemeSharedModule } from '@abp/ng.theme.shared';
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
|
@ -28,7 +34,13 @@ import { APP_ROUTE_PROVIDER } from './route.provider';
|
|
|
|
|
IdentityConfigModule.forRoot(),
|
|
|
|
|
TenantManagementConfigModule.forRoot(),
|
|
|
|
|
SettingManagementConfigModule.forRoot(),
|
|
|
|
|
//<TEMPLATE-REMOVE IF-NOT='BASIC'>
|
|
|
|
|
ThemeBasicModule.forRoot(),
|
|
|
|
|
//</TEMPLATE-REMOVE>
|
|
|
|
|
//<TEMPLATE-REMOVE IF-NOT='LEPTONX-LITE'>
|
|
|
|
|
ThemeLeptonXModule.forRoot(),
|
|
|
|
|
SideMenuLayoutModule.forRoot(),
|
|
|
|
|
//</TEMPLATE-REMOVE>
|
|
|
|
|
],
|
|
|
|
|
declarations: [AppComponent],
|
|
|
|
|
providers: [APP_ROUTE_PROVIDER],
|
|
|
|
|
|