From 1d7af36a2b275841c89815233c46cc7f105c5ddf Mon Sep 17 00:00:00 2001 From: AAGaming Date: Wed, 11 Sep 2024 19:38:58 -0400 Subject: add cache bust param to index.js of esmodule plugins should fix hot reload --- frontend/src/plugin-loader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend') diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index 1dc73372..ab086b15 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -421,7 +421,7 @@ class PluginLoader extends Logger { try { switch (loadType) { case PluginLoadType.ESMODULE_V1: - const plugin_exports = await import(`http://127.0.0.1:1337/plugins/${name}/dist/index.js`); + const plugin_exports = await import(`http://127.0.0.1:1337/plugins/${name}/dist/index.js?t=${Date.now()}`); let plugin = plugin_exports.default(); this.plugins.push({ -- cgit v1.2.3