Initial commit from https://devstar.cn/lat5211/vitepress.git ( de04cbbb4c799c76e42e33c4eb73005db0b88915 )

This commit is contained in:
2025-10-21 07:36:15 +00:00
commit c1da0298fa
22 changed files with 30903 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "template project",
description: "a template project",
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' }
]
}
})