Hi there,
so I am using the module, mainly for the icon.
Regarding the meta, I am getting the meta I need from my endpoints in my application and I set them in head.
I want to disable some of the meta that the module applies and not override them.
Specifically the og:type og:title og:description, the module inserts them as meta name, while they should be meta property.
Here is the output on my page

And this is my nuxt config

Hi. This will be fixed in next release, for now you can disable all og related meta props using this nuxt.config.js:
meta: {
ogType: false,
ogTitle: false,
ogDescription: false
}
BTW both name and property seems valid for og metas. source
Just to be totally sure, the meta should be outside of the head in nuxt.config.js,
so something like this?

This should be fine if using [email protected]. If not working i suggest await for 2.0.0 release (ETA approx tonight)
Great yes that's the version I'm using, it works!
So after the new release will I need to change it?
thanks :)
Your welcome. Nope. I've added checks for property attribute in custom meta to prevent overriding. Also, it should make correct og tags by default if not explicitly disabled.
Most helpful comment
Hi. This will be fixed in next release, for now you can disable all og related meta props using this nuxt.config.js:
BTW both
nameandpropertyseems valid for og metas. source