Curso de Angular - Optimizar SEO en Angular
Curso / Tutorial para Optimizar SEO en Angular con un service muy sencillo que modifica nuestros Metadatos (metatags, tags). Para todas las versiones de Angular (Angular 2, 4, 5, 6, 7). #Angular Código de modificación de Metatags: this.meta.updateTag({ name: 'twitter:card', content: 'summary' }); this.meta.updateTag({ name: 'twitter:site', content: '@MiTwitter' }); this.meta.updateTag({ name: 'twitter:title', content: config.title }); this.meta.updateTag({ name: 'twitter:description', content: config.description }); this.meta.updateTag({ name: 'twitter:image', content: config.image }); this.meta.updateTag({ property: 'og:type', content: 'article' }); this.meta.updateTag({ property: 'og:site_name', content: 'My Website Name' }); this.meta.updateTag({ property: 'og:title', content: config.title }); this.meta.updateTag({ property: 'og:description', content: config.description }); this.meta.updateTag({ property: 'og:image', content: config.image }); this.meta.updateTag({ property: 'og:url', content: `https://example.com/${config.slug}` }); --- 🌐 Web Site: https://www.moldeointeractive.com.ar 💬 Blog: https://www.moldeointeractive.com.ar/blog ✅ Facebook: https://www.facebook.com/moldeointeractive ✅ Instagram: https://www.instagram.com/moldeointeractive ✅ Twitter: https://www.twitter.com/moldeointer 📧 Contacto: [email protected]
Download
0 formatsNo download links available.