ca54cf84be
The image generation does not account for nested paths like we have in the `/technologies` section. That means the `og:image` meta tag is pointing to non-existent images. ## Current Behavior OpenGraph images return 404 for nested technology pages (e.g., /technologies/build-tools/docker/introduction). The generation script only processes top-level items and doesn't recurse through nested structures. e.g. https://nx.dev/technologies/typescript/recipes/switch-to-workspaces-project-references points to https://nx.dev/images/open-graph/technologies-typescript-recipes-switch-to-workspaces-project-references.jpg but this was not generated ## Expected Behavior All pages should have working OpenGraph images, including deeply nested technology documentation. e.g. https://nx-dev-git-doc-163-nrwl.vercel.app/technologies/typescript/recipes/switch-to-workspaces-project-references still points to https://nx.dev/images/open-graph/technologies-typescript-recipes-switch-to-workspaces-project-references.jpg but this is now generated (https://nx-dev-git-doc-163-nrwl.vercel.app/images/open-graph/technologies-typescript-recipes-switch-to-workspaces-project-references.jpg) ## Related Issue(s) Fixes DOC-163