import { defineConfig } from 'vitepress'; import { mdPlugin } from './config/plugins'; export default defineConfig({ title: '中植基金业务组件库文档', description: '基于Element-plus基础组件封装使用', lang: 'cn-ZH', base: '/zzfund-ui/', lastUpdated: true, themeConfig: { logo: '/favicon.ico', siteTitle: '中植基金业务组件库文档', outline: 3, nav: [ { text: '安装指南', link: '/components/', }, { text: '基础组件', link: '/components/TSelect/base.md' }, ], sidebar: { '/components': [ { text: '常用组件', items: [ { text: '头部组件', link: '/components/ZHeader/base.md' }, { text: '菜单组件', link: '/components/ZMenu/base.md' }, ], }, { text: '复杂组件', items: [ { text: '表单组件', link: '/components/TForm/base.md' }, { text: 'table组件', link: '/components/ZTable/base.md' }, ], }, ], }, }, markdown: { headers: { level: [0, 0], }, theme: { light: 'github-light', dark: 'github-dark' }, config: (md) => mdPlugin(md), }, });