31 lines
1003 B
TypeScript
Raw Normal View History

import {defineConfig} from 'vitepress'
import { ThemeConfig } from './common'
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'},
],
editLink: ThemeConfig.getEditLink('Edit this page'),
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>',
}
},
})