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

functions.web.js 273B

12345678910
  1. /**
  2. * Returns config.js file from global scope.
  3. * We can't use version that's being used for native app
  4. * because the old app uses config from global scope.
  5. *
  6. * @returns {Promise<Object>}
  7. */
  8. export function loadConfig() {
  9. return Promise.resolve(window.config);
  10. }