2024-08-28 11:56:19 +08:00
import { defineConfig } from 'vitepress'
2024-08-31 06:06:32 +08:00
import { ThemeConfig } from "./utils" ;
2024-08-28 11:38:46 +08:00
export const en = defineConfig ( {
lang : "en-US" ,
2024-08-31 06:06:32 +08:00
title : "MBCP docs" ,
description : "MBCP library docs" ,
2024-08-28 11:38:46 +08:00
themeConfig : {
2024-08-28 22:07:43 +08:00
nav : [
2024-08-29 19:00:01 +08:00
{ text : 'Get Start' , link : '/en/guide/' } ,
2024-08-30 17:56:01 +08:00
{ text : 'Reference' , link : '/en/refer' } ,
2024-08-31 06:06:32 +08:00
{ text : 'API Reference' , link : '/en/api/' } ,
2024-08-29 19:00:01 +08:00
{ text : 'Demo' , link : '/en/demo/' } ,
2024-08-28 22:07:43 +08:00
] ,
2024-08-31 06:06:32 +08:00
docFooter : {
prev : 'Prev Page' ,
next : 'Next Page'
} ,
editLink : ThemeConfig.getEditLink (
'Edit this page on GitHub' ,
) ,
2024-08-29 19:00:01 +08:00
footer : {
message : 'Documentation built with <a href="https://vitepress.dev/">VitePress</a> | API references generated by <a href="https://github.com/LiteyukiStudio/litedoc">litedoc</a>' ,
copyright : 'Copyright (C) 2020-2024 SnowyKami. All Rights Reserved'
2024-08-30 15:09:17 +08:00
} ,
outline : {
label : "On this page" ,
level : [ 2 , 6 ]
2024-08-29 19:00:01 +08:00
}
2024-08-28 11:38:46 +08:00
} ,
} )