2025-03-25 16:59:15 +08:00
|
|
|
import { defineConfig } from "vitepress";
|
2025-03-20 00:49:08 +08:00
|
|
|
|
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
title: "Bash",
|
|
|
|
|
description: "My Bash!",
|
2025-03-25 16:59:15 +08:00
|
|
|
base: "/docs/",
|
|
|
|
|
head: [["link", { rel: "icon", type: "image/svg+xml", href: "favicon.ico" }]],
|
2025-03-22 19:15:13 +08:00
|
|
|
lastUpdated: true,
|
2025-03-20 00:49:08 +08:00
|
|
|
themeConfig: {
|
|
|
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
|
|
|
nav: [
|
2025-03-25 16:59:15 +08:00
|
|
|
{ text: "Home", link: "/" },
|
|
|
|
|
{ text: "Examples", link: "/markdown-examples" },
|
2025-03-20 00:49:08 +08:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
sidebar: [
|
|
|
|
|
{
|
2025-03-25 16:59:15 +08:00
|
|
|
text: "Examples",
|
2025-03-20 00:49:08 +08:00
|
|
|
items: [
|
2025-03-25 16:59:15 +08:00
|
|
|
{ text: "Markdown Examples", link: "/markdown-examples" },
|
|
|
|
|
{ text: "Runtime API Examples", link: "/api-examples" },
|
|
|
|
|
],
|
|
|
|
|
},
|
2025-03-20 00:49:08 +08:00
|
|
|
],
|
2025-03-25 16:59:15 +08:00
|
|
|
},
|
|
|
|
|
});
|