You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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