amis-rpc-design/node_modules/nocache/index.js
2023-10-07 19:42:30 +08:00

14 lines
340 B
JavaScript

module.exports = function nocache() {
return function nocache(_, res, next) {
res.setHeader("Surrogate-Control", "no-store");
res.setHeader(
"Cache-Control",
"no-store, no-cache, must-revalidate, proxy-revalidate"
);
res.setHeader("Pragma", "no-cache");
res.setHeader("Expires", "0");
next();
};
};