(function () { const host = window.location.hostname; // Environment configurations const environments = { 'localhost': { REACT_APP_ENV_DOMAIN: "acceptance.app.smartlog.coffee", REACT_APP_ENV_REALM: "abn-cleanroom-tech", }, 'management.abn-cleanroom-tech.acceptance.app.smartlog.coffee': { REACT_APP_ENV_DOMAIN: "acceptance.app.smartlog.coffee", REACT_APP_ENV_REALM: "abn-cleanroom-tech", }, 'management.zeiss.acceptance.app.smartlog.coffee': { REACT_APP_ENV_DOMAIN: "acceptance.app.smartlog.coffee", REACT_APP_ENV_REALM: "zeiss", }, 'management.abn.acceptance.app.smartlog.coffee': { REACT_APP_ENV_DOMAIN: "acceptance.app.smartlog.coffee", REACT_APP_ENV_REALM: "abn", }, 'management.smartlog.acceptance.app.smartlog.coffee': { REACT_APP_ENV_DOMAIN: "acceptance.app.smartlog.coffee", REACT_APP_ENV_REALM: "smartlog", }, }; // Set the environment variables window.ENV = environments[host]; window.APP = { REACT_APP_ENV_DOMAIN: "acceptance.app.smartlog.coffee" }; })();