mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2025-03-13 23:31:12 +08:00
Some checks failed
Pre-commit checks / pre-commit (3.10) (push) Failing after 2m43s
Deploy VitePress site to Pages / build (push) Failing after 3m7s
Pre-commit checks / pre-commit (3.13) (push) Failing after 3m10s
Pre-commit checks / pre-commit (3.12) (push) Failing after 13m53s
Pre-commit checks / pre-commit (3.11) (push) Failing after 13m56s
Docker Image Build / build (push) Failing after 14m14s
35 lines
1.3 KiB
TypeScript
Executable File
35 lines
1.3 KiB
TypeScript
Executable File
import {defineConfig} from 'vitepress'
|
|
import {ThemeConfig} from "./utils";
|
|
|
|
export const en = defineConfig({
|
|
lang: "en-US",
|
|
title: "LiteyukiBot",
|
|
description: "A high-performance, easy-to-use chatbot framework and application",
|
|
themeConfig: {
|
|
nav: [
|
|
{text: 'Deploy', link: '/en/deploy/install'},
|
|
{text: 'Usage', link: '/en/usage/basic'},
|
|
{text: 'Extension', link: '/en/store/resource'},
|
|
{text: 'Develop', link: '/en/dev/guide'},
|
|
],
|
|
docFooter: {
|
|
prev: 'Prev Page',
|
|
next: 'Next Page'
|
|
},
|
|
editLink: ThemeConfig.getEditLink(
|
|
'Edit this page on GitHub',
|
|
),
|
|
footer: {
|
|
message: 'Page accelerated by <a href="https://cdn.liteyuki.icu" target="_blank">Liteyukiflare CDN</a><br>Documentation built with <a href="https://vitepress.dev/">VitePress</a> | API references generated by <a href="https://github.com/LiteyukiStudio/litedoc">litedoc</a>',
|
|
copyright: ThemeConfig.copyright
|
|
},
|
|
outline: ThemeConfig.getOutLine("Page Content"),
|
|
|
|
langMenuLabel: 'Language',
|
|
returnToTopLabel: 'Back to top',
|
|
sidebarMenuLabel: 'Menu',
|
|
darkModeSwitchLabel: 'Theme',
|
|
lightModeSwitchTitle: 'Light Mode',
|
|
darkModeSwitchTitle: 'Dark Mode',
|
|
},
|
|
}) |