fix: mirror to one org issue

This commit is contained in:
Arunavo Ray
2025-06-17 11:35:09 +05:30
parent b3f42624d8
commit e94de5c9ca
4 changed files with 30 additions and 21 deletions

View File

@@ -1,17 +1,4 @@
import { defineCollection, z } from 'astro:content';
// Define a schema for the documentation collection
const docsCollection = defineCollection({
type: 'content',
schema: z.object({
title: z.string(),
description: z.string(),
order: z.number().optional(),
updatedDate: z.date().optional(),
}),
});
// Export the collections
export const collections = {
'docs': docsCollection,
};
// Export empty collections since docs have been moved
export const collections = {};