I have a constant file
export class constants { public static get API_ENDPOINT(): string { return \'https://dvelopment-server/\'; } }
export class endPointconfig { public static getEnvironmentVariable() { let origin = location.origin; let path = location.href.split('/')[3]; let value = origin +'/'+ path + '/api/';`enter code here` return value; } }