fix formatting

This commit is contained in:
2025-11-24 10:22:06 -05:00
parent e181c735b8
commit 321aa058ed
41 changed files with 776 additions and 767 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
import { defineCollection, z } from "astro:content";
import { glob } from "astro/loaders";
import { defineCollection, z } from 'astro:content';
import { glob } from 'astro/loaders';
const blogCollection = defineCollection({
loader: glob({ pattern: "**/*.md", base: "./src/content/blog" }),
loader: glob({ pattern: '**/*.md', base: './src/content/blog' }),
schema: z.object({
title: z.string(),
pubDate: z.string().transform((str: string) => new Date(str)),