DigitalConsumer.ISS/src/constants/application-config.js
Johan Gunawan ee564d6d5b Change to a more accurate variable name
From Mark Harris: "... The rationale is that it’s not a querystring for passing the name of the application.  It’s a querystring for passing the name of the page.  (It just happens to be named after the applications, but that’s more of business requirement ..."
2022-12-29 15:56:51 -05:00

13 lines
No EOL
491 B
JavaScript

const applicationConfig = {
CURRENT_ENVIRONMENT: process.env.VUE_APP_CURRENT_ENVIRONMENT, // "Localhost", "Dev", "QA", and "Prod"
CONSUMER_CF_DISTRO: process.env.VUE_APP_CONSUMER_CF_DISTRO,
ANALYTICS_SESSION_TIMEOUT_MINUTES: 30,
SAVED_SESSION_TIMEOUT_DAYS: 45,
COOKIE_PATH: "/",
APPLICATION_NAME: "SelfService",
SITE_ENTRY_TRIGGER_VALUE: "SelfService",
APPLICATION_ABBREVIATION: "iss",
PAGE_QUERYSTRING: 'issPage',
};
export { applicationConfig };