diff options
author | 2021-04-14 18:09:30 -0500 | |
---|---|---|
committer | 2021-04-14 18:09:30 -0500 | |
commit | 077fceabcb4a505106ffa832ee252d786bb1e872 (patch) | |
tree | b9dcfd0be281627b5a3b5fca6bf978e7660afb8d | |
parent | 8472b374b3fd4f96617082e55e021cb9e9e4ea95 (diff) | |
download | astro-077fceabcb4a505106ffa832ee252d786bb1e872.tar.gz astro-077fceabcb4a505106ffa832ee252d786bb1e872.tar.zst astro-077fceabcb4a505106ffa832ee252d786bb1e872.zip |
fix: update og image
-rw-r--r-- | www/astro/components/BaseHead.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/astro/components/BaseHead.astro b/www/astro/components/BaseHead.astro index 93cb8baa5..155d12ae2 100644 --- a/www/astro/components/BaseHead.astro +++ b/www/astro/components/BaseHead.astro @@ -19,14 +19,14 @@ export let permalink: string; <meta property="og:url" content={permalink} /> <meta property="og:title" content={title} /> <meta property="og:description" content={description} /> -<meta property="og:image" content="https://astro.build/social.png" /> +<meta property="og:image" content="https://astro.build/social.png?v=1" /> <!-- Twitter --> <meta property="twitter:card" content="summary_large_image" /> <meta property="twitter:url" content={permalink} /> <meta property="twitter:title" content={title} /> <meta property="twitter:description" content={description} /> -<meta property="twitter:image" content="https://astro.build/social.png" /> +<meta property="twitter:image" content="https://astro.build/social.png?v=1" /> <!-- Fonts --> <link rel="preconnect" href="https://fonts.gstatic.com" /> |