Space/.vuepress/config.ts

53 lines
857 B
TypeScript

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