mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 09:39:15 +08:00
12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import { defineConfig } from 'vitepress'
|
|
import { getNav } from './config/nav'
|
|
import { getSidebar } from './config/sidebar'
|
|
|
|
export default defineConfig({
|
|
title: 'vue3组件库站点',
|
|
themeConfig: {
|
|
nav: getNav(),
|
|
sidebar: getSidebar()
|
|
}
|
|
})
|