[site/contentlayer][s]: add missing fields we are using url, twitter, launched, medium.
This commit is contained in:
parent
054a5e259a
commit
09fcb2d112
|
|
@ -31,7 +31,12 @@ const OtherPage = defineDocumentType(() => ({
|
||||||
podcast: { type: "string" },
|
podcast: { type: "string" },
|
||||||
featured: { type: "boolean", default: false },
|
featured: { type: "boolean", default: false },
|
||||||
created: { type: "date", description: "The date this page was created (For internal use)" },
|
created: { type: "date", description: "The date this page was created (For internal use)" },
|
||||||
aliases: { type: 'reference', of: ObsidianAliases }
|
aliases: { type: 'reference', of: ObsidianAliases },
|
||||||
|
url: { type: 'string', description: 'Associated url e.g. homepage for a project' },
|
||||||
|
twitter: { type: 'string' },
|
||||||
|
medium: { type: 'string' },
|
||||||
|
status: { type: 'string' },
|
||||||
|
launched: { type: 'string' },
|
||||||
},
|
},
|
||||||
computedFields: {
|
computedFields: {
|
||||||
date: {
|
date: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue