Don't cache ui plugins in the browser

This commit is contained in:
cmdr2 2022-10-20 16:05:18 +05:30
parent f4bcc1f2e5
commit 2e17ea99e2

View File

@ -34,7 +34,7 @@ async function loadUIPlugins() {
res = await res.json()
res.forEach(pluginPath => {
let script = document.createElement('script')
script.src = pluginPath
script.src = pluginPath + '?t=' + Date.now()
console.log('loading plugin', pluginPath)