mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
feat: released 0.0.9 changelog
This commit is contained in:
parent
b4b7059035
commit
2603db74eb
7 changed files with 207 additions and 2 deletions
|
|
@ -1,7 +1,24 @@
|
|||
import { defineConfig, defineDocs } from "fumadocs-mdx/config";
|
||||
import { defineConfig, defineDocs, frontmatterSchema } from "fumadocs-mdx/config";
|
||||
import { z } from "zod";
|
||||
|
||||
export const docs = defineDocs({
|
||||
dir: "content/docs",
|
||||
});
|
||||
|
||||
export default defineConfig();
|
||||
export const changelog = defineDocs({
|
||||
dir: "changelog/content",
|
||||
docs: {
|
||||
schema: frontmatterSchema.extend({
|
||||
date: z.string(),
|
||||
tags: z.array(z.string()).optional(),
|
||||
version: z.string().optional(),
|
||||
}),
|
||||
},
|
||||
});
|
||||
|
||||
export default defineConfig({
|
||||
lastModifiedTime: "git",
|
||||
mdxOptions: {
|
||||
providerImportSource: "@/mdx-components",
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue