2024-12-14 16:11:30 +08:00
|
|
|
import {defineConfig} from 'vitepress'
|
2024-12-17 01:36:31 +08:00
|
|
|
import { ThemeConfig } from './common'
|
2024-12-14 16:11:30 +08:00
|
|
|
|
|
|
|
export const zh = defineConfig({
|
|
|
|
lang: "zh-Hans",
|
|
|
|
title: "小棉智能",
|
|
|
|
description: "可爱,智能且易扩展",
|
|
|
|
themeConfig: {
|
|
|
|
docFooter: {
|
|
|
|
prev: '上一页',
|
|
|
|
next: '下一页'
|
|
|
|
},
|
2024-12-15 22:56:41 +08:00
|
|
|
nav: [
|
|
|
|
{text: '家', link: '/'},
|
|
|
|
{text: '使用', link: '/start/install'},
|
|
|
|
{text: '开发', link: '/dev/extension'},
|
|
|
|
],
|
2024-12-17 01:36:31 +08:00
|
|
|
editLink: ThemeConfig.getEditLink('编辑此页面'),
|
2024-12-14 16:11:30 +08:00
|
|
|
langMenuLabel: '语言',
|
|
|
|
returnToTopLabel: '返回顶部',
|
|
|
|
sidebarMenuLabel: '菜单',
|
|
|
|
darkModeSwitchLabel: '主题',
|
|
|
|
lightModeSwitchTitle: '轻色模式',
|
|
|
|
darkModeSwitchTitle: '深色模式',
|
2024-12-15 22:56:41 +08:00
|
|
|
footer: {
|
|
|
|
message: "文档完善中,欢迎提出建议或帮助我们完善。",
|
|
|
|
copyright: '© 2024 <a href="https://liteyuki.icu" target="_blank">Liteyuki Studio</a>',
|
|
|
|
}
|
2024-12-14 16:11:30 +08:00
|
|
|
},
|
|
|
|
})
|