index.js 362 B

12345678910
  1. "use strict";
  2. module.exports = function nocache() {
  3. return function nocache(_req, res, next) {
  4. res.setHeader('Surrogate-Control', 'no-store');
  5. res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate, proxy-revalidate');
  6. res.setHeader('Pragma', 'no-cache');
  7. res.setHeader('Expires', '0');
  8. next();
  9. };
  10. };