|
@@ -0,0 +1,21 @@
|
|
|
+const baseConfig = document.createElement('script')
|
|
|
+baseConfig.type = 'text/javascript'
|
|
|
+baseConfig.src = './baseConfig.js'
|
|
|
+document.head.appendChild(baseConfig)
|
|
|
+
|
|
|
+const config = document.createElement('script')
|
|
|
+config.id = 'configJS'
|
|
|
+config.type = 'text/javascript'
|
|
|
+config.src = './config.js?t=' + new Date().getTime()
|
|
|
+document.head.appendChild(config)
|
|
|
+
|
|
|
+if (!window.configLoadLoop) {
|
|
|
+ window.configLoadLoop = setInterval(function () {
|
|
|
+ document.head.removeChild(document.getElementById('configJS'))
|
|
|
+ const config = document.createElement('script')
|
|
|
+ config.id = 'configJS'
|
|
|
+ config.type = 'text/javascript'
|
|
|
+ config.src = './config.js?t=' + new Date().getTime()
|
|
|
+ document.head.appendChild(config)
|
|
|
+ }, 60 * 1000)
|
|
|
+}
|