import { Injectable, Inject } from '@angular/core'; @Injectable( { providedIn: 'root' } ) export class CommonService { constructor(@Inject('env') private env) { } public getEnv() { return this.env; } }