UNPKG

mihawk

Version:

A tiny & simple mock server tool, support json,js,cjs,ts(typescript).

11 lines (10 loc) 272 B
'use strict'; export default function cache() { return async function (ctx, next) { ctx.set('Pragma', 'No-cache'); ctx.set('Cache-Control', 'No-cache'); ctx.set('Expires', '0'); ctx.set('Vary', 'Origin'); await next(); }; }