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 script[src] and link[href] tags across entries (#668)
Tags without an explicit dedup key (like `script[src]` and `link[href]`) were
keyed by their unique position index in `dedupeTags()`, meaning identical tags
from separate entries were never deduplicated.
Now falls back to `hashTag()` (content-based hash) instead of position, so
identical tags collide and deduplicate. The hash is precomputed during tag
normalization and cached on `_h` to avoid recomputation in the DOM renderer.
Closes#666
0 commit comments