mirror of
https://github.com/esphome/esphome.git
synced 2024-11-15 10:35:51 +01:00
Let favicon be cached (#3729)
This commit is contained in:
parent
fc15ddfa91
commit
a47e92f2bc
@ -947,6 +947,9 @@ def make_app(debug=get_bool_env(ENV_DEV)):
|
|||||||
|
|
||||||
class StaticFileHandler(tornado.web.StaticFileHandler):
|
class StaticFileHandler(tornado.web.StaticFileHandler):
|
||||||
def set_extra_headers(self, path):
|
def set_extra_headers(self, path):
|
||||||
|
if "favicon.ico" in path:
|
||||||
|
self.set_header("Cache-Control", "max-age=84600, public")
|
||||||
|
else:
|
||||||
self.set_header(
|
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"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user