mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-13 02:59:14 +08:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import type { DefaultTheme } from 'vitepress'
|
|
import { getNav } from './nav'
|
|
import { getSidebar } from './sidebar'
|
|
|
|
export default (): DefaultTheme.Config => ({
|
|
nav: getNav(),
|
|
sidebar: getSidebar(),
|
|
i18nRouting: true
|
|
})
|