Prettier config

This commit is contained in:
2023-02-25 17:56:35 +00:00
parent eaa1ccfd9e
commit b60f598ba2
17 changed files with 1381 additions and 220 deletions
+8 -8
View File
@@ -1,12 +1,12 @@
import { z, defineCollection } from "astro:content";
import { z, defineCollection } from 'astro:content'
const blogCollection = defineCollection({
schema: z.object({
title: z.string(),
pubDate: z.date(),
}),
});
schema: z.object({
title: z.string(),
pubDate: z.date(),
}),
})
export const collections = {
blog: blogCollection,
};
blog: blogCollection,
}