mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	Allow static assets to be cached if not in debug mode (#5684)
This commit is contained in:
		| @@ -1328,9 +1328,11 @@ def make_app(debug=get_bool_env(ENV_DEV)): | ||||
|             if "favicon.ico" in path: | ||||
|                 self.set_header("Cache-Control", "max-age=84600, public") | ||||
|             else: | ||||
|                 self.set_header( | ||||
|                     "Cache-Control", "no-store, no-cache, must-revalidate, max-age=0" | ||||
|                 ) | ||||
|                 if debug: | ||||
|                     self.set_header( | ||||
|                         "Cache-Control", | ||||
|                         "no-store, no-cache, must-revalidate, max-age=0", | ||||
|                     ) | ||||
|  | ||||
|     app_settings = { | ||||
|         "debug": debug, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user