mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			318 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			318 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;
 |