#Meta tags not working for dynamic page
9 messages · Page 1 of 1 (latest)
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...
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.
hard to tell without code, as if you check the HTML returned it is only the loading spinner
And glad you liked the video 🙏
Yeah the video was really good, cause now I actually know what is SSR and what is not, so much easier to debug! 🙂
@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.
you can use useFetch in this case 🙂