Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
Match the OpenGraph protocol markup
Browse files Browse the repository at this point in the history
https://ogp.me/ suggests to use the attribute `property` instead of `name` for defining its properties
  • Loading branch information
IsraelOrtuno committed Nov 14, 2022
1 parent 7677eec commit 9c4d544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/1.getting-started/5.seo-meta.md
Expand Up @@ -234,7 +234,7 @@ And then in your layout file, you might use the route's metadata you have previo
const route = useRoute()
useHead({
meta: [{ name: 'og:title', content: `App Name - ${route.meta.title}` }]
meta: [{ property: 'og:title', content: `App Name - ${route.meta.title}` }]
})
</script>
```
Expand Down

0 comments on commit 9c4d544

Please sign in to comment.