mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 11:47:30 +01:00
Allow static assets to be cached if not in debug mode (#5684)
This commit is contained in:
parent
fce59819f5
commit
43b36ac3c7
@ -1328,8 +1328,10 @@ def make_app(debug=get_bool_env(ENV_DEV)):
|
||||
if "favicon.ico" in path:
|
||||
self.set_header("Cache-Control", "max-age=84600, public")
|
||||
else:
|
||||
if debug:
|
||||
self.set_header(
|
||||
"Cache-Control", "no-store, no-cache, must-revalidate, max-age=0"
|
||||
"Cache-Control",
|
||||
"no-store, no-cache, must-revalidate, max-age=0",
|
||||
)
|
||||
|
||||
app_settings = {
|
||||
|
Loading…
Reference in New Issue
Block a user