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 en = defineConfig ( {
lang : "en-US" ,
title : "Marsho AI" ,
description : "Kawaii, Intelligent and Easy to Extend" ,
themeConfig : {
docFooter : {
prev : 'Prev' ,
next : 'Next'
} ,
2024-12-15 22:56:41 +08:00
nav : [
{ text : 'Home' , link : '/en' } ,
{ text : 'Usage' , link : '/en/start/install' } ,
{ text : 'Develop' , link : '/en/dev/extension' } ,
] ,
2024-12-17 01:36:31 +08:00
editLink : ThemeConfig.getEditLink ( 'Edit this page' ) ,
2024-12-14 16:11:30 +08:00
langMenuLabel : 'Language' ,
returnToTopLabel : 'To top' ,
sidebarMenuLabel : 'Option' ,
darkModeSwitchLabel : 'Theme' ,
lightModeSwitchTitle : 'Light' ,
darkModeSwitchTitle : 'Dark' ,
2024-12-15 23:01:16 +08:00
footer : {
2025-03-07 17:18:56 +08:00
message : "The document is being improved. Suggestions are welcome.<br>Webpage is deployed at <a href='https://meli.liteyuki.icu' target='_blank'>Liteyukiflare Meli</a> and accelerated by <a href='https://cdn.liteyuki.icu' target='_blank'>Liteyukiflare CDN</a>." ,
2024-12-15 23:01:16 +08:00
copyright : '© 2024 <a href="https://liteyuki.icu" target="_blank">Liteyuki Studio</a>' ,
}
2024-12-14 16:11:30 +08:00
} ,
2024-12-15 23:01:16 +08:00
2024-12-14 16:11:30 +08:00
} )