1
|
import {AppRoutingModule} from "./app.routing";
|
2
|
import {BrowserModule} from "@angular/platform-browser";
|
3
|
import {HttpClientModule} from "@angular/common/http";
|
4
|
import {CookieLawModule} from "./openaireLibrary/sharedComponents/cookie-law/cookie-law.module";
|
5
|
import {NavigationBarModule} from "./openaireLibrary/sharedComponents/navigationBar.module";
|
6
|
import {BrowserAnimationsModule} from "@angular/platform-browser/animations";
|
7
|
import {SafeHtmlPipeModule} from "./openaireLibrary/utils/pipes/safeHTMLPipe.module";
|
8
|
import {AppComponent} from "./app.component";
|
9
|
import {NgModule} from "@angular/core";
|
10
|
import {EnvironmentSpecificService} from "./openaireLibrary/utils/properties/environment-specific.service";
|
11
|
|
12
|
@NgModule({
|
13
|
imports: [
|
14
|
AppRoutingModule,
|
15
|
BrowserModule,
|
16
|
BrowserAnimationsModule,
|
17
|
HttpClientModule,
|
18
|
NavigationBarModule,
|
19
|
CookieLawModule,
|
20
|
SafeHtmlPipeModule,
|
21
|
BrowserAnimationsModule
|
22
|
],
|
23
|
declarations: [
|
24
|
AppComponent,
|
25
|
],
|
26
|
providers: [EnvironmentSpecificService],
|
27
|
bootstrap: [ AppComponent ]
|
28
|
})
|
29
|
|
30
|
export class AppModule { }
|