mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 11:29:33 +08:00
chore: remove unused file
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
import { z } from "astro:content";
|
||||
|
||||
export const blogSchema = z
|
||||
.object({
|
||||
author: z.string().optional(),
|
||||
pubDatetime: z.date(),
|
||||
title: z.string(),
|
||||
postSlug: z.string().optional(),
|
||||
featured: z.boolean().optional(),
|
||||
draft: z.boolean().optional(),
|
||||
tags: z.array(z.string()).default(["others"]),
|
||||
ogImage: z.string().optional(),
|
||||
description: z.string(),
|
||||
canonicalURL: z.string().optional(),
|
||||
})
|
||||
.strict();
|
||||
Reference in New Issue
Block a user