tangled
alpha
login
or
join now
claycow.com
/
claycow
0
fork
atom
A Astro blog hosted on Vercel
0
fork
atom
overview
issues
pulls
pipelines
add hard coded width and height for meta tags
Clayton Cook
1 year ago
869193b5
5f745aed
+2
-2
1 changed file
expand all
collapse all
unified
split
src
components
organisms
Head.astro
+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
66
-
<meta property="og:image:width" content={image.width.toString()} />
67
67
-
<meta property="og:image:height" content={image.height.toString()} />
66
66
+
<meta property="og:image:width" content="600" />
67
67
+
<meta property="og:image:height" content="600" />
68
68
<meta property="og:image:alt" content={description} />
69
69
)
70
70
}