aboutsummaryrefslogtreecommitdiffstats
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/content.config.ts40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/content/content.config.ts b/src/content/content.config.ts
deleted file mode 100644
index e2c62ca..0000000
--- a/src/content/content.config.ts
+++ /dev/null
@@ -1,40 +0,0 @@
-import { defineCollection, z } from 'astro:content';
-
-const blog = defineCollection({
- // Type-check frontmatter using a schema
- schema: z.object({
- title: z.string(),
- description: z.string(),
- // Transform string to Date object
- pubDate: z
- .string()
- .or(z.date())
- .transform((val) => new Date(val)),
- updatedDate: z
- .string()
- .optional()
- .transform((str) => (str ? new Date(str) : undefined)),
- heroImage: z.string().optional(),
- }),
-});
-
-const micro = defineCollection({
- // Type-check frontmatter using a schema
- schema: z.object({
- title: z.string(),
- description: z.string(),
- // Transform string to Date object
- pubDate: z
- .string()
- .or(z.date())
- .transform((val) => new Date(val)),
- updatedDate: z
- .string()
- .optional()
- .transform((str) => (str ? new Date(str) : undefined)),
- heroImage: z.string().optional(),
- }),
-});
-
-
-export const collections = { blog, micro };
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage