Fix: Make content optional in BlogPost type

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-19 23:47:42 +01:00
co-authored by Claude Opus 4.5
parent f16b1bcbfd
commit a7ee78d194
+1 -1
View File
@@ -9,7 +9,7 @@ export interface BlogPost {
coverImage: string;
category?: string;
tags?: string[];
content: string;
content?: string;
}
const BLOG_POSTS_DIR = path.join(process.cwd(), 'blog-posts');