socket-function 1.1.34 → 1.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -202,8 +202,7 @@ class HotReloadControllerBase {
|
|
|
202
202
|
file = "https://" + (BOOTED_EDGE_NODE?.host || location.host) + "/" + file;
|
|
203
203
|
let module = require.cache[file];
|
|
204
204
|
if (!module) {
|
|
205
|
-
console.log(`Module not found: ${file}, reloading page
|
|
206
|
-
document.location.reload();
|
|
205
|
+
console.log(`Module not found: ${file}, not reloading page`);
|
|
207
206
|
return;
|
|
208
207
|
}
|
|
209
208
|
if (!module.hotreload) {
|