summaryrefslogtreecommitdiffstats
path: root/server/modules/apicache/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/modules/apicache/index.js')
-rw-r--r--server/modules/apicache/index.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/server/modules/apicache/index.js b/server/modules/apicache/index.js
new file mode 100644
index 0000000..b8bb9b3
--- /dev/null
+++ b/server/modules/apicache/index.js
@@ -0,0 +1,14 @@
+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;