Space/.vuepress/config.ts

53 lines
857 B
TypeScript
Raw Normal View History

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