A Astro blog hosted on Vercel

Revert "add hard coded width and height for meta tags"

This reverts commit 869193b5b75e1bdbfb8ab90813c92ff54b8aa727.

+2 -2
+2 -2
src/components/organisms/Head.astro
··· 63 63 <meta property="og:image" content={new URL(image.src, Astro.url)} /> 64 64 <meta property="og:image:url" content={new URL(image.src, Astro.url)} /> 65 65 <meta property="og:image:type" content={`image/${image.format}`} /> 66 - <meta property="og:image:width" content="600" /> 67 - <meta property="og:image:height" content="600" /> 66 + <meta property="og:image:width" content={image.width.toString()} /> 67 + <meta property="og:image:height" content={image.height.toString()} /> 68 68 <meta property="og:image:alt" content={description} /> 69 69 ) 70 70 }