This commit is contained in:
Maidul Islam
2025-06-10 03:10:16 -04:00
parent bdb36d6be4
commit 2d3c63e8b9

View File

@@ -57,12 +57,11 @@ export const registerServeUI = async (
reply.callNotFound();
return;
}
// This should help avoid caching any chunks (temp)
reply.header('Cache-Control', 'no-cache, no-store, must-revalidate');
reply.header('Pragma', 'no-cache');
reply.header("Cache-Control", "no-cache, no-store, must-revalidate");
reply.header("Pragma", "no-cache");
return reply.sendFile("index.html");
}
});
}