This commit is contained in:
2025-12-26 21:56:11 +08:00
parent e857204140
commit 1688124e8e
31 changed files with 256 additions and 736 deletions

View File

@@ -6,5 +6,8 @@ export interface BlogPost {
alt: string;
ogImage: string;
tags: string[];
categories: string[];
published: boolean;
meta: Record<string, unknown>; // 添加 meta 属性
path: string; // 添加 path 属性
}