🍱 Add apple touch icon

This commit is contained in:
2024-08-10 22:34:29 +08:00
parent ad5aacce9c
commit f58ca6b9ca
2 changed files with 12 additions and 30 deletions

View File

@ -1,20 +0,0 @@
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.siteUrl + '/' + url,
},
]
}