docs/middleware/fast-head.js

15 строки
378 B
JavaScript
Исходник Обычный вид История

2022-11-30 03:04:34 +03:00
import { defaultCacheControl } from './cache-control.js'
export default function fastHead(req, res, next) {
const { context } = req
const { page } = context
if (page) {
// Since the *presence* is not affected by the request, we can cache
// this and allow the CDN to hold on to it.
2022-11-30 03:04:34 +03:00
defaultCacheControl(res)
return res.status(200).send('')
}
next()
}