|
|
|
@ -1,8 +1,9 @@ |
|
|
|
import { AccountConfigModule } from '@abp/ng.account.config'; |
|
|
|
import { AccountConfigModule } from '@abp/ng.account/config'; |
|
|
|
import { CoreModule } from '@abp/ng.core'; |
|
|
|
import { IdentityConfigModule } from '@abp/ng.identity.config'; |
|
|
|
import { SettingManagementConfigModule } from '@abp/ng.setting-management.config'; |
|
|
|
import { TenantManagementConfigModule } from '@abp/ng.tenant-management.config'; |
|
|
|
import { IdentityConfigModule } from '@abp/ng.identity/config'; |
|
|
|
import { SettingManagementConfigModule } from '@abp/ng.setting-management/config'; |
|
|
|
import { TenantManagementConfigModule } from '@abp/ng.tenant-management/config'; |
|
|
|
import { ThemeBasicModule } from '@abp/ng.theme.basic'; |
|
|
|
import { ThemeSharedModule } from '@abp/ng.theme.shared'; |
|
|
|
import { NgModule } from '@angular/core'; |
|
|
|
import { BrowserModule } from '@angular/platform-browser'; |
|
|
|
@ -12,7 +13,6 @@ import { NgxsModule } from '@ngxs/store'; |
|
|
|
import { environment } from '../environments/environment'; |
|
|
|
import { AppRoutingModule } from './app-routing.module'; |
|
|
|
import { AppComponent } from './app.component'; |
|
|
|
import { SharedModule } from './shared/shared.module'; |
|
|
|
|
|
|
|
const LOGGERS = [NgxsLoggerPluginModule.forRoot({ disabled: false })]; |
|
|
|
|
|
|
|
@ -25,12 +25,12 @@ const LOGGERS = [NgxsLoggerPluginModule.forRoot({ disabled: false })]; |
|
|
|
environment, |
|
|
|
}), |
|
|
|
ThemeSharedModule.forRoot(), |
|
|
|
AccountConfigModule.forRoot({ redirectUrl: '/' }), |
|
|
|
IdentityConfigModule, |
|
|
|
TenantManagementConfigModule, |
|
|
|
SettingManagementConfigModule, |
|
|
|
AccountConfigModule.forRoot(), |
|
|
|
IdentityConfigModule.forRoot(), |
|
|
|
TenantManagementConfigModule.forRoot(), |
|
|
|
SettingManagementConfigModule.forRoot(), |
|
|
|
NgxsModule.forRoot(), |
|
|
|
SharedModule, |
|
|
|
ThemeBasicModule.forRoot(), |
|
|
|
...(environment.production ? [] : LOGGERS), |
|
|
|
], |
|
|
|
declarations: [AppComponent], |
|
|
|
|