您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
254B

  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. };