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 ..."
13 lines
No EOL
491 B
JavaScript
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 }; |