mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 04:22:07 +00:00
9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
/**
|
|
* @returns {import('express').RequestHandler}
|
|
*/
|
|
export function cache() {
|
|
return function (_req, res, next) {
|
|
res.setHeader('Cache-Control', 'max-age=3600, no-cache');
|
|
next();
|
|
}
|
|
} |