SSR for injecting social meta tags

For my web framework that does not support SSR out of the box, I'm trying to create a workers function that will dynamically render meta tags based on the given route. So far I've found this:
https://community.cloudflare.com/t/cloudflare-pages-functions-ssr-server-side-rendering/338481

Can anyone point me to more resources on this?
Cloudflare Community
Super excited that Cloudflare pages goes full stack Cloudflare Pages Goes Full Stack I’m very interested in SSR section it mentioned in the article I have created functions/todos/[id].ts in my react root folder. like export async function onRequestGet({ request, params }) { return new Response('hello world'); } After deploy it to page...
Was this page helpful?