Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.
Builder content link
What are you trying to accomplish
The documentation to integrate meta tags on Qwik framework does not work.
It states that it should be done with code like below:
<Head>
{/* Render meta tags from custom field */}
<title>{article.data.title}</title>
<meta name="description" content={article.data.blurb} />
<meta name="og:image" content={article.data.image} />
</Head>
Whereas the Qwik framework does not have such <Head>
tag.
It should make use DocumentHead
. Any examples would be helpful.