getShortName.ts 167 B

12345
  1. export const getShortName = (env: any) => {
  2. return `__PRODUCTION__${env.VITE_GLOB_APP_SHORT_NAME || '__APP'}__CONF__`
  3. .toUpperCase()
  4. .replace(/\s/g, '');
  5. };