mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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 { ThemeBasicModule } from '@abp/ng.theme.basic';
|
|
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 { MyProjectNameConfigModule } from '@my-company-name/my-project-name/config';
|
|
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: [
|
|
BrowserModule,
|
|
BrowserAnimationsModule,
|
|
AppRoutingModule,
|
|
CoreModule.forRoot({
|
|
environment,
|
|
registerLocaleFn: registerLocale(),
|
|
sendNullsAsQueryParam: false,
|
|
skipGetAppConfiguration: false,
|
|
}),
|
|
AbpOAuthModule.forRoot(),
|
|
ThemeSharedModule.forRoot(),
|
|
AccountConfigModule.forRoot(),
|
|
IdentityConfigModule.forRoot(),
|
|
TenantManagementConfigModule.forRoot(),
|
|
SettingManagementConfigModule.forRoot(),
|
|
MyProjectNameConfigModule.forRoot(),
|
|
ThemeBasicModule.forRoot(),
|
|
FeatureManagementModule.forRoot(),
|
|
],
|
|
providers: [APP_ROUTE_PROVIDER],
|
|
declarations: [AppComponent],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|
|
|