aboutsummaryrefslogtreecommitdiff
path: root/src/http.ffi.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'src/http.ffi.mjs')
-rw-r--r--src/http.ffi.mjs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http.ffi.mjs b/src/http.ffi.mjs
index 3f59933..d1989bf 100644
--- a/src/http.ffi.mjs
+++ b/src/http.ffi.mjs
@@ -30,6 +30,9 @@ const html = `<!DOCTYPE html>
</html>`;
const server = Http.createServer((req, res) => {
+ res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate, private');
+ res.setHeader('Pragma', 'no-cache');
+
switch (true) {
case req.url === "/": {
res.setHeader("Content-Type", "text/html");