Fix placeholder cache control

This commit is contained in:
lowlighter
2020-11-06 20:04:06 +01:00
parent c488ae154d
commit 90d088edf7

View File

@@ -35,6 +35,7 @@
}
//Cache headers middleware
middlewares.push((req, res, next) => {
if (!["/placeholder"].includes(req.path))
res.header("Cache-Control", cached ? `public, max-age=${cached}` : "no-store, no-cache")
next()
})