fix: formatting

Changed files
+7 -7
app
pages
+1 -1
app/pages/posts/[...slug].vue
···
defineOgImageComponent("Post", {
title: post.value.title,
date: post.value.date,
-
author: post.value.authors[0]?.name,
});
}
</script>
···
defineOgImageComponent("Post", {
title: post.value.title,
date: post.value.date,
+
author: post.value.authors[0]?.name
});
}
</script>
+6 -6
nuxt.config.ts
···
ogImage: {
fonts: [
-
{
-
name: 'Recoleta',
-
weight: 700,
-
path: '/fonts/recoleta-bold.ttf',
-
}
-
],
},
icon: {
···
ogImage: {
fonts: [
+
{
+
name: "Recoleta",
+
weight: 700,
+
path: "/fonts/recoleta-bold.ttf"
+
}
+
]
},
icon: {