|
|
|
@ -1,22 +1,22 @@ |
|
|
|
import { ThemeBasicModule } from '@abp/ng.theme.basic'; |
|
|
|
import { AccountConfigModule } from '@abp/ng.account/config'; |
|
|
|
import { NgModule } from '@angular/core'; |
|
|
|
import { BrowserModule } from '@angular/platform-browser'; |
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; |
|
|
|
import { CoreModule } from '@abp/ng.core'; |
|
|
|
import { registerLocale } from '@abp/ng.core/locale'; |
|
|
|
import { ThemeSharedModule } from '@abp/ng.theme.shared'; |
|
|
|
import { ThemeLeptonXModule } from '@abp/ng.theme.lepton-x'; |
|
|
|
import { SideMenuLayoutModule } from '@abp/ng.theme.lepton-x/layouts'; |
|
|
|
import { IdentityConfigModule } from '@abp/ng.identity/config'; |
|
|
|
import { AbpOAuthModule } from '@abp/ng.oauth'; |
|
|
|
import { SettingManagementConfigModule } from '@abp/ng.setting-management/config'; |
|
|
|
import { TenantManagementConfigModule } from '@abp/ng.tenant-management/config'; |
|
|
|
import { ThemeLeptonXModule } from '@abp/ng.theme.lepton-x'; |
|
|
|
import { SideMenuLayoutModule } from '@abp/ng.theme.lepton-x/layouts'; |
|
|
|
import { ThemeSharedModule } from '@abp/ng.theme.shared'; |
|
|
|
import { NgModule } from '@angular/core'; |
|
|
|
import { BrowserModule } from '@angular/platform-browser'; |
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; |
|
|
|
import { FeatureManagementModule } from '@abp/ng.feature-management'; |
|
|
|
import { AccountConfigModule } from '@abp/ng.account/config'; |
|
|
|
import { AccountLayoutModule } from '@abp/ng.theme.lepton-x/account/account-layout'; |
|
|
|
import { environment } from '../environments/environment'; |
|
|
|
import { AppRoutingModule } from './app-routing.module'; |
|
|
|
import { AppComponent } from './app.component'; |
|
|
|
import { APP_ROUTE_PROVIDER } from './route.provider'; |
|
|
|
import { FeatureManagementModule } from '@abp/ng.feature-management'; |
|
|
|
import { AbpOAuthModule } from '@abp/ng.oauth'; |
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
imports: [ |
|
|
|
@ -36,7 +36,9 @@ import { AbpOAuthModule } from '@abp/ng.oauth'; |
|
|
|
TenantManagementConfigModule.forRoot(), |
|
|
|
FeatureManagementModule.forRoot(), |
|
|
|
SettingManagementConfigModule.forRoot(), |
|
|
|
ThemeBasicModule.forRoot(), |
|
|
|
ThemeLeptonXModule.forRoot(), |
|
|
|
SideMenuLayoutModule.forRoot(), |
|
|
|
AccountLayoutModule.forRoot(), |
|
|
|
], |
|
|
|
providers: [APP_ROUTE_PROVIDER], |
|
|
|
declarations: [AppComponent], |
|
|
|
|