56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
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",
|
|
items: [
|
|
{ text: "Wie werde ich Pilot?", link: "/pilotenbereich/how-to-pilot" },
|
|
{ text: "Wie werde ich Disponent?", link: "/disponentenbereich/how-to-disponent" },
|
|
],
|
|
},
|
|
{ text: "FAQ", link: "/faq" },
|
|
],
|
|
|
|
footer: {
|
|
message: "<a href=''>Impressum</a> | <a href=''>Datenschutzerklärung</a>",
|
|
},
|
|
|
|
sidebar: [
|
|
{
|
|
text: "Pilotenbereich",
|
|
items: [{ text: "How-To Pilot", link: "/pilotenbereich/how-to-pilot" }],
|
|
},
|
|
{
|
|
text: "Disponentenbereich",
|
|
items: [{ text: "How-To Disponent", link: "/disponentenbereich/how-to-disponent" }],
|
|
},
|
|
],
|
|
|
|
socialLinks: [{ icon: "github", link: "https://github.com/VAR-Virtual-Air-Rescue/docs" }],
|
|
|
|
docFooter: {
|
|
prev: "Vorherige Seite",
|
|
next: "Nächste Seite",
|
|
},
|
|
|
|
outline: {
|
|
label: "Inhalt",
|
|
},
|
|
},
|
|
markdown: {
|
|
theme: {
|
|
light: "catppuccin-latte",
|
|
dark: "catppuccin-mocha",
|
|
},
|
|
},
|
|
});
|