chore: remove unused file

This commit is contained in:
tanishqmanuja
2023-09-20 15:03:04 +05:30
committed by Sat Naing
parent 6dffcf3cb3
commit 35bb517d3a
-16
View File
@@ -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();