import { BrowserModule } from '@angular/platform-browser';
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule, APP_BASE_HREF } from '@angular/common';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HttpClientModule } from '@angular/common/http';
import { WebApi } from './api-com/api';
{ provide: APP_BASE_HREF, useValue: window['_app_base'] || '/' }
bootstrap: [AppComponent]
export class AppModule { }