feat: 重构 Docker Compose 配置,移除旧文件并添加新的安装和配置文件

This commit is contained in:
2025-03-20 00:49:08 +08:00
parent 6b16d70f10
commit cda5a22823
25 changed files with 410 additions and 19 deletions

View File

@@ -0,0 +1,28 @@
import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Bash",
description: "My Bash!",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Examples', link: '/markdown-examples' }
],
sidebar: [
{
text: 'Examples',
items: [
{ text: 'Markdown Examples', link: '/markdown-examples' },
{ text: 'Runtime API Examples', link: '/api-examples' }
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
]
}
})