mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-01-31 23:44:20 +08:00
19 lines
507 B
TypeScript
19 lines
507 B
TypeScript
|
import {defineConfig} from 'vitepress'
|
||
|
|
||
|
export const en = defineConfig({
|
||
|
lang: "en-US",
|
||
|
title: "Marsho AI",
|
||
|
description: "Kawaii, Intelligent and Easy to Extend",
|
||
|
themeConfig: {
|
||
|
docFooter: {
|
||
|
prev: 'Prev',
|
||
|
next: 'Next'
|
||
|
},
|
||
|
langMenuLabel: 'Language',
|
||
|
returnToTopLabel: 'To top',
|
||
|
sidebarMenuLabel: 'Option',
|
||
|
darkModeSwitchLabel: 'Theme',
|
||
|
lightModeSwitchTitle: 'Light',
|
||
|
darkModeSwitchTitle: 'Dark',
|
||
|
},
|
||
|
})
|