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