Next.js Discord

Discord Forum

Issue in metas

Unanswered
American Chinchilla posted this in #help-forum
Open in Discord
Avatar
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

Avatar
why do you want to hide twitter metadata tags?
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.
Avatar
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
Avatar
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.
Avatar
American ChinchillaOP
Not working