fix typos

This commit is contained in:
2024-01-24 12:31:39 -05:00
parent 02c52c9ea6
commit 69e9be9f68
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
import { z, defineCollection } from 'astro:content'
import { z, defineCollection } from 'astro:content';
const blogCollection = defineCollection({
schema: z.object({
@@ -22,8 +22,8 @@ const blogCollection = defineCollection({
])
),
}),
})
});
export const collections = {
blog: blogCollection,
}
};