From b697dead84e910ebda66034380191773ec2db70e Mon Sep 17 00:00:00 2001 From: conglinyizhi Date: Sun, 18 May 2025 01:54:17 +0800 Subject: [PATCH] feat(Layout): Make ogImage an optional parameter --- src/layouts/Layout.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index b61d8fe..2717b54 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -10,7 +10,7 @@ interface Props { title: string; description: string; path?: string; - ogImage: string; + ogImage?: string; } const defaultTitle = siteConfig.title