diff --git a/hermes_cli/web_server.py b/hermes_cli/web_server.py index a2db00ac2c3..e2d8e7946bd 100644 --- a/hermes_cli/web_server.py +++ b/hermes_cli/web_server.py @@ -4346,7 +4346,11 @@ async def serve_plugin_asset(plugin_name: str, file_path: str): ".woff": "font/woff", } media_type = content_types.get(suffix, "application/octet-stream") - return FileResponse(target, media_type=media_type) + return FileResponse( + target, + media_type=media_type, + headers={"Cache-Control": "no-store, no-cache, must-revalidate"}, + ) def _mount_plugin_api_routes():