Создание службы в мета-импорте из '@ angular / platform-browser'
import {Injectable} из '@ angular / core'; import {Meta} из '@ angular / platform-browser';
@Injectable({providedIn: 'root'})
export class SEOService {
constructor(private meta: Meta) {
meta.addTags([
{name: 'description', content: 'Title and Meta tags examples'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
{name: 'robots', content: 'INDEX, FOLLOW'},
{name: 'author', content: 'ABCD'},
{name: 'keywords', content: 'TypeScript, Angular'},
{name: 'date', content: '2018-06-02', scheme: 'YYYY-MM-DD'},
{httpEquiv: 'Content-Type', content: 'text/html'},
{property: 'og:title', content: "My Text"},
{property: 'og:type', content: "website"},
{charset: 'UTF-8'}
]);
}
}
Вы также можете получить ссылку из Angular meta service