Reputation: 471
I am using NuxtContent with Nuxt3. I have a document that uses the following tags:
---
title: "test"
description: "test"
image:
src: '/test.webp'
alt: 'test'
head:
meta:
- name: 'keywords'
content: 'test'
---
This results in proper title, description and keyword tags in my <head />
, but it doesn't generate og:image
or any other og
tags. Here is a link to the documentation:
https://content.nuxtjs.org/api/composables/use-content-head#parameters
Is my implementation wrong?
Upvotes: 1
Views: 172