docs: v1.2 release notes (#1602)

This commit is contained in:
Bereket Engida
2025-03-01 02:22:32 +03:00
committed by GitHub
parent 015a43b254
commit 86cbf70684
19 changed files with 1086 additions and 276 deletions

View File

@@ -3,28 +3,30 @@ import { defineConfig } from "fumadocs-mdx/config";
import { remarkInstall } from "fumadocs-docgen";
import { z } from "zod";
export default defineConfig({
mdxOptions: {
remarkPlugins: [
[
remarkInstall,
{
persist: {
id: "persist-install",
},
},
],
],
},
mdxOptions: {
remarkPlugins: [
[
remarkInstall,
{
persist: {
id: "persist-install",
},
},
],
],
},
});
export const changelog = defineCollections({
type: "doc",
dir: "./content/changelog",
schema: z.object({
title: z.string(),
}),
export const changelogCollection = defineCollections({
type: "doc",
dir: "./content/changelogs",
schema: z.object({
title: z.string(),
description: z.string(),
date: z.date(),
}),
});
export const { docs, meta } = defineDocs({
dir: "./content/docs",
dir: "./content/docs",
});