// The file contents for the current environment will overwrite these during build. // The build system defaults to the dev environment which uses `environment.ts`, but if you do // `ng build --env=prod` then `environment.prod.ts` will be used instead. // The list of which env maps to which file can be found in `.angular-cli.json`. import { Environment } from "./environment.interface"; export const CLIENT_ID = ''; export const TIMESTAMP = new Date().getTime(); export const environment: Environment = { production: false, devTool:true, baseUrls: { serviceSecurity: '' }, bomConfig: { target: 'arrowcom', apis: { cart: { domain: 'arrow.com', subdomain: 'qacart', path: 'server-webapp/api' }, hybris: { domain: 'arrow.com', subdomain: 'yqa1', path: 'arrowwebservices/v2/arrow' }, bom: { domain: 'arrow.{topDomain}', subdomain: 'qa-design', path: 'bom/v2' }, myprojects: { protocol: 'https', domain: 'arrow.com', subdomain: 'dev', path: 'projects/api/v3' } } } };