-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.module.ts
31 lines (29 loc) · 1012 Bytes
/
app.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgxsLoggerPluginModule } from '@ngxs/logger-plugin';
import { NgxsModule } from '@ngxs/store';
import { CoreModule, ngxsLogExcept } from '@ngx-performance-ui/core';
import { environment } from '../environments/environment';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { UiModule } from '../../projects/ui/src/public_api';
import { NgxSlickJsModule } from 'ngx-slickjs';
@NgModule({
declarations: [AppComponent],
imports: [
AppRoutingModule,
BrowserModule,
CoreModule.forRoot(),
UiModule,
NgxSlickJsModule.forRoot(),
// Third party
NgxsModule.forRoot([]),
NgxsLoggerPluginModule.forRoot({
disabled: environment.production,
logger: environment.production ? null : ngxsLogExcept(['EventListener']),
}),
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}