You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.8 KiB
45 lines
1.8 KiB
import { AccountConfigModule } from '@abp/ng.account/config';
|
|
import { CoreModule } from '@abp/ng.core';
|
|
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';
|
|
import { ThemeLeptonXModule } from '@abp/ng.theme.lepton-x';
|
|
import { AccountLayoutModule } from '@abp/ng.theme.lepton-x/account';
|
|
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 { CatalogConfigModule } from '@eshoponabp/catalog/config';
|
|
import { NgxsModule } from '@ngxs/store';
|
|
import { environment } from '../environments/environment';
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { APP_ROUTE_PROVIDER } from './route.provider';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
BrowserAnimationsModule,
|
|
AppRoutingModule,
|
|
CoreModule.forRoot({
|
|
environment,
|
|
registerLocaleFn: registerLocale(),
|
|
}),
|
|
ThemeSharedModule.forRoot(),
|
|
AccountConfigModule.forRoot(),
|
|
IdentityConfigModule.forRoot(),
|
|
TenantManagementConfigModule.forRoot(),
|
|
SettingManagementConfigModule.forRoot(),
|
|
ThemeLeptonXModule.forRoot(),
|
|
SideMenuLayoutModule.forRoot(),
|
|
AccountLayoutModule.forRoot(),
|
|
CatalogConfigModule.forRoot(),
|
|
NgxsModule.forRoot(),
|
|
],
|
|
declarations: [AppComponent],
|
|
providers: [APP_ROUTE_PROVIDER],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|
|
|