Next.js Discord

Discord Forum

Issue in metas

Unanswered
American Chinchilla posted this in #help-forum
Open in Discord
American ChinchillaOP
I want to display only og meta tags. When I am using metas in next js it displays Twitter card metas by default.
There is no option to hide twitter card metas.

5 Replies

if you want to use different data for the twitter tags, you can declare them separately from the og: tags. there is no benefit in having og: tags and explicitly no twitter tags.
American ChinchillaOP
Thanks for reply. This is the requirement. Someone wants only og tags but not want twitter card tags.
Please suggest me any solution for it
you can try
export const metadata = {
  twitter: null,
}

but likely it doesn't work. in that case i don't know.

that's the weirdest requirement ever.
American ChinchillaOP
Not working