Dynamic meta title not showing in view page source Angular Universal
We have used the title service and meta service for each component. The tile aswellas the metadata is updated only on the element and its not get updated on view source page.
this.meta.updateTag({
property: 'og:image',
content: "Image-Link"
});
Probably because you didn't have
<meta property="og:image" content="your-url">in your index.html.You can use addTag instead of updateTag in this case.