You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(unhead): deduplicate matching tags inside same render cycle
Tags without an explicit dedup key (like `script[src]` and `link[href]`) were
keyed by their unique position index during tag resolution, so identical tags
from separate entries were never deduplicated within the same render cycle.
Now falls back to `hashTag()` (content-based hash) instead of position index,
so matching tags collide and deduplicate correctly. The hash is precomputed
during normalization and cached on `_h` to avoid recomputation in the DOM
renderer.
Closes#666
0 commit comments