Working blog
This commit is contained in:
parent
a7203010bf
commit
05617a5302
15
src/content/config.ts
Normal file
15
src/content/config.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { defineCollection, z } from "astro:content";
|
||||
|
||||
const blogCollection = defineCollection({
|
||||
schema: ({ image }) => z.object({
|
||||
title: z.string(),
|
||||
cover: image().refine((img) => img.width >= 1080, {
|
||||
message: "Cover image must be at least 1080 pixels wide!",
|
||||
}),
|
||||
coverAlt: z.string(),
|
||||
}),
|
||||
});
|
||||
|
||||
export const collections = {
|
||||
blog: blogCollection,
|
||||
};
|
Loading…
Reference in New Issue
Block a user