configLoader.js 377 B

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