项目文件夹

文件
2026-07-13 11:58:44 +08:00

13 行
304 B
JavaScript

const apicache = require("./apicache");
apicache.options({
headerBlacklist: ["cache-control"],
headers: {
// Disable client side cache, only server side cache.
// BUG! Not working for the second request
"cache-control": "no-cache",
},
});
module.exports = apicache;