Skip to content

VitePress 中文设置

参考 huyipu.github.io

config.mts 中添加如下片段

typescript
import { defineConfig } from 'vitepress'

export default defineConfig({
  // ...

  lang: "zh-CN",
  locales: {
    root: {
      lang: "zh-CN",
      label: "简体中文",
    }
  },
  themeConfig: {
    // nav, sidebar, socialLinks...

    darkModeSwitchLabel: "切换外观",
    docFooter: {
      prev: "上一篇", //Next page
      next: "下一篇", //Previous page
    },
    outlineTitle: "大纲",
    returnToTopLabel: "返回顶部",
    sidebarMenuLabel: "菜单",
    notFound: {
      title: "页面未找到",
      quote: "但也许不改变航向,持续航行,也能到达你要去的彼岸",
      linkText: "返回首页",
    },
  }

  // ...
}

作者:Bluevect

最后更新:2025-08-30