Dynamic meta title not showing in view page source Angular 2+

168 Views Asked by At

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"
        });
1

There are 1 best solutions below

1
Tsenguun Tsogbadrakh On

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.