mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
483 B
23 lines
483 B
2 years ago
|
import { defineConfig } from '../../../src/node'
|
||
|
|
||
|
export default defineConfig({
|
||
|
title: 'Configured Example',
|
||
|
description: 'Example of configured options of VitePress',
|
||
|
themeConfig: {
|
||
|
sidebar: {
|
||
|
'/': [
|
||
|
{
|
||
|
text: 'Frontmatter',
|
||
|
collapsible: true,
|
||
|
items: [
|
||
|
{
|
||
|
text: 'Multiple levels outline',
|
||
|
link: '/frontmatter/multiple-levels-outline'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
})
|