mirror of
https://github.com/louislam/uptime-kuma.git
synced 2026-06-23 04:10:14 +00:00
0f61d7ee1b
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
13 lines
304 B
JavaScript
13 lines
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;
|