默认主题配置
主题配置可让你自定义主题。 你可以通过将 themeConfig
添加到配置文件来定义主题配置:
export default {
lang: 'en-US',
title: 'VitePress',
description: 'Vite & Vue powered static site generator.',
// Theme related configurations.
themeConfig: {
logo: '/logo.svg',
nav: [...],
sidebar: { ... }
}
}
此页面上记录的选项仅适用于默认主题。不同的主题需要不同的主题配置。使用自定义主题时,主题配置对象将传递给主题,以便主题可以基于它作出不同表现。
i18nRouting
- key:
i18nRouting
- Type:
boolean
将本地语言更改为 zh
会将 URL 从 /foo
(或 /en/foo/
)更改为 /zh/foo
。你可以通过将 themeConfig.i18nRouting
设置为 false
来禁用此行为。
图标
- key:
logo
- Type:
ThemeableImage
Logo file to display in nav bar, right before the site title. Accepts a path string, or an object to set a different logo for light/dark mode.
export default {
themeConfig: {
logo: '/logo.svg',
},
}
type ThemeableImage = string | { src: string; alt?: string } | { light: string; dark: string; alt?: string }
站点标题开关
- key:
siteTitle
- Type:
string | false
你可以自定义此项以替换导航中的默认站点标题(应用配置中的 title
)。 当设置为 false
时,导航中的标题将被禁用。 这在当你的 logo
已经包含网站标题文本时很有用。
export default {
themeConfig: {
siteTitle: 'Hello World',
},
}
导航栏
- key:
nav
- Type:
NavItem
导航菜单项的配置。 你可以在默认主题: 导航栏 了解更多详情。
export default {
themeConfig: {
nav: [
{ text: 'Guide', link: '/guide' },
{
text: 'Dropdown Menu',
items: [
{ text: 'Item A', link: '/item-1' },
{ text: 'Item B', link: '/item-2' },
{ text: 'Item C', link: '/item-3' },
],
},
],
},
}
type NavItem = NavItemWithLink | NavItemWithChildren
interface NavItemWithLink {
text: string
link: string
activeMatch?: string
target?: string
rel?: string
}
interface NavItemChildren {
text?: string
items: NavItemWithLink[]
}
interface NavItemWithChildren {
text?: string
items: (NavItemChildren | NavItemWithLink)[]
activeMatch?: string
}
侧边栏
- key:
sidebar
- Type:
Sidebar
侧边栏菜单项的配置。 你可以在默认主题: 侧边栏 了解更多详情。
export default {
themeConfig: {
sidebar: [
{
text: 'Guide',
items: [
{ text: 'Introduction', link: '/introduction' },
{ text: 'Getting Started', link: '/getting-started' },
...
]
}
]
}
}
export type Sidebar = SidebarItem[] | SidebarMulti
export interface SidebarMulti {
[path: string]: SidebarItem[]
}
export type SidebarItem = {
/**
* The text label of the item.
*/
text?: string
/**
* The link of the item.
*/
link?: string
/**
* The children of the item.
*/
items?: SidebarItem[]
/**
* If not specified, group is not collapsible.
*
* If `true`, group is collapsible and collapsed by default
*
* If `false`, group is collapsible but expanded by default
*/
collapsed?: boolean
}
大纲开关
key:
aside
Type:
boolean
Default:
true
每个页面可以通过 frontmatter 覆写
将此值设置为
false
可禁用 aside(大纲) 容器。
大纲层级
- key:
outline
- Type:
number | [number, number] | 'deep' | false
- Default:
2
- 每个页面可以通过 frontmatter 覆写
配置在大纲中显示的标题级别。你可以通过传递一个数字来指定一个特定的级别,或者你可以通过传递一个包含下限和上限的元组来提供一个级别范围。当传递等于 [2, 6]
的 deep
时,除 h1
外,所有标题级别都显示在轮廓中。设置 false
以隐藏轮廓。
大纲标题
- key:
outlineTitle
- Type:
string
- Default:
On this page
可用于自定义右侧边栏的标题(在大纲链接的顶部)。 这在用另一种语言编写文档时很有用。
export default {
themeConfig: {
outlineTitle: 'In hac pagina',
},
}
社交链接
- Type:
SocialLink[]
你可以定义此选项以在导航栏中展示带有图标的社交帐户链接。
export default {
themeConfig: {
socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' },
{ icon: 'twitter', link: '...' },
// You can also add custom icons by passing SVG as string:
{
icon: {
svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Dribbble</title><path d="M12...6.38z"/></svg>',
},
link: '...',
},
],
},
}
interface SocialLink {
icon: SocialLinkIcon
link: string
}
type SocialLinkIcon = 'discord' | 'facebook' | 'github' | 'instagram' | 'linkedin' | 'mastodon' | 'slack' | 'twitter' | 'youtube' | { svg: string }
页脚
- Type:
Footer
页脚配置。 你可以添加 message 和 copyright。 由于设计原因,仅当页面不包含侧边栏时才会显示页脚。
export default {
themeConfig: {
footer: {
message: 'Released under the MIT License.',
copyright: 'Copyright © 2019-present Evan You',
},
},
}
export interface Footer {
message?: string
copyright?: string
}
编辑链接
- Type:
EditLink
- 每个页面可以通过 frontmatter 覆写
编辑链接可让你显示链接以编辑 Git 管理服务(例如 GitHub 或 GitLab)上的页面。 有关详细信息,请参阅 默认主题:编辑链接。
export default {
themeConfig: {
editLink: {
pattern: 'https://github.com/vuejs/vitepress/edit/main/docs/:path',
text: 'Edit this page on GitHub',
},
},
}
export interface EditLink {
pattern: string
text?: string
}
最近更新时间文本
- Type:
string
- Default:
Last updated
显示最近更新时间之前的前缀文本。
export default {
themeConfig: {
lastUpdatedText: 'Updated Date',
},
}
algolia
- Type:
AlgoliaSearch
支持使用 Algolia DocSearch 搜索站点文档。在 默认主题:搜索 中了解更多信息。
export interface AlgoliaSearchOptions extends DocSearchProps {
locales?: Record<string, Partial<DocSearchProps>>
}
在这里查看完整配置。
carbonAds
- Type:
CarbonAdsOptions
一个配置即可展示 Carbon Ads。
export default {
themeConfig: {
carbonAds: {
code: 'your-carbon-code',
placement: 'your-carbon-placement',
},
},
}
export interface CarbonAdsOptions {
code: string
placement: string
}
Learn more in Default Theme: Carbon Ads
翻页文案
- Type:
DocFooter
可用于自定义出现在上一篇和下一篇链接上方的文本。 如果不是用英语编写文档,这很有帮助。
export default {
themeConfig: {
docFooter: {
prev: 'Pagina prior',
next: 'Proxima pagina',
},
},
}
export interface DocFooter {
prev?: string
next?: string
}
暗模式开关标签
- key:
darkModeSwitchLabel
- Type:
string
- Default:
Appearance
可用于自定义深色模式开关标签。此标签仅显示在移动视图中。
侧边栏菜单标签
- key:
sidebarMenuLabel
- Type:
string
- Default:
Menu
可用于自定义侧边栏菜单标签。此标签仅显示在移动视图中。
返回顶部标签
- key:
returnToTopLabel
- Type:
string
- Default:
Return to top
可用于自定义返回顶部按钮的标签。此标签仅显示在移动视图中。
多语言菜单标签
- key:
langMenuLabel
- Type:
string
- Default:
Change language
可用于自定义导航栏中语言切换按钮的 aria-label。这仅在你使用 i18n 时使用。