#Meta tags not working for dynamic page

9 messages · Page 1 of 1 (latest)

proven wind
#

Because the part where you define the meta tags were not server rendered

#

See e.g. https://www.youtube.com/watch?v=b1euj4dg3Sw on how to trouble-shoot it

🚀 Server-Side Rendering (SSR) is amazing - but is your content actually server-rendered? In this video, we will discover a dead simple technique to verify if it is or not 🌐

Links:
🔗 Website repo: https://github.com/manniL/lichter.io
🔗 Dynamically enable SSR or SPA mode in a Nuxt 3 app: https://www.lichter.io/articles/nuxt3-dynamic-ssr-spa/

Wh...

▶ Play video
rugged coral
# proven wind See e.g. https://www.youtube.com/watch?v=b1euj4dg3Sw on how to trouble-shoot it

Amazing video.

My hole site is SSR.
But in one page the OG image is working but not on another page:

Og Image is working on mysite.com

useSeoMeta({
  title: "my title",
  description:"my description",
  ogImage: getAppUrl('brand-images/pink-lady-high-resolution.jpg'),
});

Og Image not working on mysite.com/professional

useSeoMeta({
  title: "my title",
  description:"my description",
  ogImage: getAppUrl('brand-images/pink-lady-high-resolution.jpg'),
});

Above pages are exactly the same and I am not fetching the data.

proven wind
#

And glad you liked the video 🙏

rugged coral
#

@proven wind
Do you have a video on how to make fetched data SSRendered?
Cause currently I am waiting for a fetch call to finish and the using v-html.
Cause it seems like, fetch data is no SSR.

proven wind