diff --git a/app.js b/app.js index 239ba84..2b0c093 100644 --- a/app.js +++ b/app.js @@ -14,7 +14,10 @@ const bareServer = createBareServer('/bare/', { const serve = serveStatic(join( dirname(fileURLToPath(import.meta.url)), 'static/' -), {fallthrough: false}); +), { + fallthrough: false, + maxAge: 5 * 60 * 1000 +}); const server = http.createServer();