Last active
July 12, 2024 10:40
-
-
Save krschmidt/9d46d1d080454b55f8cf to your computer and use it in GitHub Desktop.
Set Canonical URL via Javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript'> | |
var link = !!document.querySelector("link[rel='canonical']") ? document.querySelector("link[rel='canonical']") : document.createElement('link'); | |
link.setAttribute('rel', 'canonical'); | |
link.setAttribute('href', location.protocol + '//' + location.host + location.pathname); | |
document.head.appendChild(link); | |
</script> |
@shaheeriversion out of curiousity, how did you accomplish this with unhead
in VueJS 3? I'm trying to set up a project and would love to get canonical link
tags and og:url
meta tags working.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@SamMakesCode Alternative to
vue-meta
. I usedUnhead
, in VueJS 3 which works fine for the meta title, description and og tags.