Space/.vuepress/config.ts

43 lines
619 B
TypeScript

import { defaultTheme, defineUserConfig } from "vuepress";
export default defineUserConfig({
lang: "cs-CZ",
title: "Wiki",
description: "",
theme: defaultTheme({
logo: "/assets/favicon.png",
navbar: [
{
text: "Úvod",
link: "/",
},
],
sidebar: {
"/api": [
{
text: "API",
children: [
"/api",
"/api/email",
"/api/qr"
]
}
],
"/software": [
{
text: "Software",
children: [
"/software",
"/software/desktop"
]
},
{
text: "Výběr",
children: [
"/software/firefox"
]
}
]
}
})
});