Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

getConfigFileName.ts 254B

123456789
  1. /**
  2. * Get the configuration file variable name
  3. * @param env
  4. */
  5. export const getConfigFileName = (env: Record<string, any>) => {
  6. return `__PRODUCTION__${env.VITE_GLOB_APP_SHORT_NAME || '__APP'}__CONF__`
  7. .toUpperCase()
  8. .replace(/\s/g, '');
  9. };