runtime-config.js 671 B

12345678910111213141516171819202122
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.setConfig = setConfig;
  6. exports.default = void 0;
  7. let runtimeConfig;
  8. var _default = ()=>{
  9. return runtimeConfig;
  10. };
  11. exports.default = _default;
  12. function setConfig(configValue) {
  13. runtimeConfig = configValue;
  14. }
  15. if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
  16. Object.defineProperty(exports.default, '__esModule', { value: true });
  17. Object.assign(exports.default, exports);
  18. module.exports = exports.default;
  19. }
  20. //# sourceMappingURL=runtime-config.js.map