mirror of
https://github.com/nesquena/hermes-webui.git
synced 2026-05-25 11:10:18 +00:00
f109592cb0
All 10 local <script> tags now use the defer attribute, allowing the browser to download them in parallel during HTML parsing instead of blocking the DOM sequentially. Execution order is preserved. Before: scripts loaded one-at-a-time, each blocking DOM construction After: scripts downloaded in parallel, executed in order after DOM ready Fixes slow sidebar session list rendering on initial page load. Co-authored-by: 陳俊宇 <chenjunyu@chenjunyudeMacBook-Air-7.local>