diff options
author | 2022-10-17 19:59:53 +0530 | |
---|---|---|
committer | 2022-10-17 22:29:53 +0800 | |
commit | bf01c8bf67cf9e8fa6e772e9cde1919be1db28d8 (patch) | |
tree | 22f5cb07000a3423035098a25a23a407533179e3 | |
parent | ce01225a700aff5b437d46f21161e5f557050e12 (diff) | |
download | astro-bf01c8bf67cf9e8fa6e772e9cde1919be1db28d8.tar.gz astro-bf01c8bf67cf9e8fa6e772e9cde1919be1db28d8.tar.zst astro-bf01c8bf67cf9e8fa6e772e9cde1919be1db28d8.zip |
Fix missing image src in config for examples docs (#5109)
-rw-r--r-- | examples/docs/src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/docs/src/config.ts b/examples/docs/src/config.ts index b8258b1f7..8ca1b577c 100644 --- a/examples/docs/src/config.ts +++ b/examples/docs/src/config.ts @@ -6,7 +6,7 @@ export const SITE = { export const OPEN_GRAPH = { image: { - src: 'https://github.com/withastro/astro/blob/main/assets/social/banner.jpg?raw=true', + src: 'https://github.com/withastro/astro/blob/main/assets/social/banner-minimal.png?raw=true', alt: 'astro logo on a starry expanse of space,' + ' with a purple saturn-like planet floating in the right foreground', |