Fix Open Graph meta tag for blog pages by removing unnecessary http-equiv attribute

This commit is contained in:
nurRiyad
2025-03-13 03:49:24 +06:00
parent 455f1606ce
commit f4f6a8475d

View File

@@ -34,7 +34,7 @@ useHead({
}, },
// Test on: https://developers.facebook.com/tools/debug/ or https://socialsharepreview.com/ // Test on: https://developers.facebook.com/tools/debug/ or https://socialsharepreview.com/
{ property: 'og:site_name', content: navbarData.homeTitle }, { property: 'og:site_name', content: navbarData.homeTitle },
{ 'http-equiv': 'og:type', property: 'og:type', content: 'website' }, { property: 'og:type', content: 'website' },
{ {
property: 'og:url', property: 'og:url',
content: `${seoData.mySite}/${path}`, content: `${seoData.mySite}/${path}`,