Add cache busting for atlas assets

This commit is contained in:
wuyang
2026-07-08 13:04:41 +08:00
parent 8a4106be68
commit 0b00a031fd
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -762,6 +762,7 @@ class PaperBrowserHandler(SimpleHTTPRequestHandler):
return
self.send_response(HTTPStatus.OK)
self.send_header("content-type", content_type)
self.send_header("cache-control", "no-store, max-age=0")
self.send_header("content-length", str(len(data)))
self.end_headers()
self.wfile.write(data)