getConfigFileName.js 311 B

12345678910
  1. /**
  2. * Get the configuration file variable name
  3. * @param env
  4. */
  5. export const getConfigFileName = (env) => {
  6. // return `__PRODUCTION__${env.VITE_APP_SHORT_NAME || '__APP'}__CONF__`
  7. // .toUpperCase()
  8. // .replace(/\s/g, '')
  9. return `__PRODUCTION__CsmartMes__CONF__`.toUpperCase().replace(/\s/g, '')
  10. }