configLoader.js 590 B

123456789101112131415161718192021
  1. const baseConfig = document.createElement('script')
  2. baseConfig.type = 'text/javascript'
  3. baseConfig.src = './baseConfig.js'
  4. document.head.appendChild(baseConfig)
  5. setConfigJS()
  6. if (!window.configLoadLoop) {
  7. window.configLoadLoop = setInterval(function () {
  8. document.head.removeChild(document.getElementById('configJS'))
  9. setConfigJS()
  10. }, 60 * 1000)
  11. }
  12. function setConfigJS() {
  13. const config = document.createElement('script')
  14. config.id = 'configJS'
  15. config.type = 'text/javascript'
  16. config.src = './config.js?t=' + new Date().getTime()
  17. document.head.appendChild(config)
  18. }