mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-02-01 06:01:26 +08:00
29 lines
903 B
TypeScript
Executable File
29 lines
903 B
TypeScript
Executable File
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'
|
|
},
|
|
nav: [
|
|
{text: 'Home', link: '/en'},
|
|
{text: 'Usage', link: '/en/start/install'},
|
|
{text: 'Develop', link: '/en/dev/extension'},
|
|
],
|
|
langMenuLabel: 'Language',
|
|
returnToTopLabel: 'To top',
|
|
sidebarMenuLabel: 'Option',
|
|
darkModeSwitchLabel: 'Theme',
|
|
lightModeSwitchTitle: 'Light',
|
|
darkModeSwitchTitle: 'Dark',
|
|
footer: {
|
|
message: "The document is being improved. Suggestions are welcome.",
|
|
copyright: '© 2024 <a href="https://liteyuki.icu" target="_blank">Liteyuki Studio</a>',
|
|
}
|
|
},
|
|
|
|
}) |