This commit is contained in:
2026-02-10 02:27:12 +01:00
parent 781a4c3a4e
commit 7ba96f6a03
10 changed files with 495 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import { defineConfig } from "vitepress"
export default defineConfig({
title: "CMS Docs",
description: "Engineering documentation for the CMS platform",
cleanUrls: true,
lastUpdated: true,
themeConfig: {
nav: [
{ text: "Home", link: "/" },
{ text: "Getting Started", link: "/getting-started" },
{ text: "Architecture", link: "/architecture" },
{ text: "Workflow", link: "/workflow" },
],
sidebar: [
{
text: "Guide",
items: [
{ text: "Overview", link: "/" },
{ text: "Getting Started", link: "/getting-started" },
{ text: "Architecture", link: "/architecture" },
{ text: "Workflow", link: "/workflow" },
],
},
],
socialLinks: [{ icon: "github", link: "https://example.com/replace-with-repo" }],
footer: {
message: "Internal documentation",
copyright: "Copyright © CMS",
},
},
})