Capital/utils/seo.ts

21 lines
477 B
TypeScript
Raw Normal View History

export function createSEOHead(title: string, description: string, url: string) {
return [
{ key: "og:title", property: "og:title", content: title },
{
key: "og:description",
name: "og:description",
content: description,
},
{
key: "description",
name: "description",
content: description,
},
{
hid: 'og:url',
property: 'og:url',
content: useRuntimeConfig().public.baseUrl + '/' + url,
},
]
}