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
Currently, vue-head removes links with duplicated id (so if there was <link id="a"> rendered in source, and link with id: 'a' is rendered in runtime, then the previous one is removed).
I would really love if there was an option to also remove duplicated by hreflang attribute, so if there's a link like so in source:
<html>
<head>
<link hreflang="en-GB"/>
</head>
and I have this in my Head.js:
{
rel: 'alternate',
hreflang: 'en-GB'
}
then the previous one (rendered in source) would also be deleted, just like it is deleted now if id are duplicated.
It can be a flag set in vue-head or in config.
Waiting for your answer.
The text was updated successfully, but these errors were encountered:
Currently,
vue-head
removes links with duplicatedid
(so if there was<link id="a">
rendered in source, andlink
withid: 'a'
is rendered in runtime, then the previous one is removed).I would really love if there was an option to also remove duplicated by
hreflang
attribute, so if there's a link like so in source:and I have this in my
Head.js
:then the previous one (rendered in source) would also be deleted, just like it is deleted now if
id
are duplicated.It can be a flag set in
vue-head
or in config.Waiting for your answer.
The text was updated successfully, but these errors were encountered: