import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; import ConfigService from '../services/config.service'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, HttpClientModule ], providers: [ ConfigService, ConfigService.getAppInitializer('/assets/config.json') ], bootstrap: [AppComponent] }) export class AppModule { }