chore: lint

This commit is contained in:
Bereket Engida
2025-03-01 02:47:15 +03:00
parent 0c7a098e95
commit f6051b45b8
3 changed files with 178 additions and 180 deletions

View File

@@ -3,30 +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 changelogCollection = defineCollections({
type: "doc",
dir: "./content/changelogs",
schema: z.object({
title: z.string(),
description: z.string(),
date: z.date(),
}),
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",
});