Вы не можете выбрать более 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. }