feat(seo): added canonical url

This commit is contained in:
Corentin Thomasset 2021-05-21 23:43:40 +02:00
parent 70cf404ec6
commit 3035ba52a2
No known key found for this signature in database
GPG key ID: DBD997E935996158

View file

@ -122,6 +122,17 @@ export default class DefaultLayout extends mixins(ToolRoutesMixin) {
drawer = false
items = []
appVersion = 'v' + version
head() {
return {
link: [
{
rel: 'canonical',
href: 'https://it-tools.tech' + this.$route.path
}
]
}
}
}
</script>