Merge pull request #715 from dishs/main

bugfix: Fix for missing image in ld+json blob
This commit is contained in:
Timothy 2023-09-26 10:06:10 +08:00 committed by GitHub
commit 038bd1d49f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ export const Blog = defineDocumentType(() => ({
lastmod: { type: 'date' },
draft: { type: 'boolean' },
summary: { type: 'string' },
images: { type: 'list', of: { type: 'string' } },
images: { type: 'json' },
authors: { type: 'list', of: { type: 'string' } },
layout: { type: 'string' },
bibliography: { type: 'string' },