Files
var-monorepo/apps/docs/.vitepress/config.mts
2025-06-11 00:43:18 +02:00

36 lines
864 B
TypeScript

import { defineConfig } from "vitepress";
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "VAR Knowledgebase",
description: "How To's und mehr zu Virtual Air Rescue",
srcDir: "src",
themeConfig: {
logo: "/var_logo.png",
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: "Startseite", link: "/" },
{ text: "How-To's", link: "/markdown-examples" },
{ text: "Knowledgebase", link: "/markdown-examples" },
],
sidebar: [
{
text: "Examples",
items: [
{ text: "Markdown Examples", link: "/markdown-examples" },
{ text: "Runtime API Examples", link: "/api-examples" },
],
},
],
socialLinks: [{ icon: "github", link: "https://github.com/vuejs/vitepress" }],
},
markdown: {
theme: {
light: "catppuccin-latte",
dark: "catppuccin-mocha",
},
},
});