-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocusaurus.config.ts
142 lines (133 loc) · 5.42 KB
/
docusaurus.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
const config: Config = {
title: 'ripple',
tagline: 'PHP协程引擎',
favicon: 'img/favicon.ico',
// Set the production url of your site here
url: 'https://ripple.cloudtay.com',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'facebook', // Usually your GitHub org/user name.
projectName: 'docusaurus', // Usually your repo name.
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'zh',
locales: ['zh', 'en'],
localeConfigs: {
zh: {
label: '中文',
htmlLang: 'zh-CN',
path: 'zh',
},
en: {
label: 'English',
htmlLang: 'en-us',
path: 'en',
},
}
},
presets: [
[
'classic',
{
docs: {
sidebarPath: './sidebars.ts',
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/cloudtay/ripple-documents/tree/main/',
},
blog: {
showReadingTime: true,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/cloudtay/ripple-documents/tree/main/',
},
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
themeConfig: {
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
navbar: {
title: '',
logo: {
alt: 'ripple',
src: 'img/logo.svg',
},
items: [
{to: '/docs/intro', label: 'Docs', position: 'left'},
{
type: 'localeDropdown',
position: 'right',
},
{
href: 'https://github.com/cloudtay/ripple',
label: 'Source Code',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: '相关链接',
items: [
{
label: '源代码',
to: 'https://github.com/cloudtay/ripple',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} ripple, Inc. Built with Docusaurus.`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
additionalLanguages: ['php','bash'],
},
metadata: [
{
name: 'keywords',
content: 'ripple,PHP,协程,PHP协程,PHP异步,PHP高并发,PHP高性能,PHP协程引擎,PHP协程框架, coroutine, PHP coroutine, PHP asynchronous, PHP high concurrency, PHP high performance, PHP coroutine engine, PHP coroutine framework',
},
{
name: 'keywords:en',
content: 'coroutine, PHP coroutine, PHP asynchronous, PHP high concurrency, PHP high performance, PHP coroutine engine, PHP coroutine framework',
},
{
name: 'description',
content: 'ripple是一个现代化的、高性能的原生PHP协程框架,旨在解决PHP在高并发、复杂网络通信和数据操作方面的挑战。 该框架采用创新的架构和高效的编程模型,为现代 Web 和 Web 应用程序提供强大而灵活的后端支持。 通过使用 ripple,你将体验到从系统全局视图管理任务并高效处理网络流量和数据的优势。',
},
{
name: 'description:en',
content: 'ripple is a modern, high-performance native PHP coroutine framework designed to solve PHPs challenges in high concurrency, complex network communication and data operations. The framework uses an innovative architecture and efficient programming model to provide powerful and flexible backend support for modern web and web applications. By using ripple, you will experience the advantages of managing tasks from a global view of the system and efficiently handling network traffic and data.',
}
]
} satisfies Preset.ThemeConfig,
plugins: [
[
require.resolve('@easyops-cn/docusaurus-search-local'),
{
hashed: true,
language: ['en', 'zh']
}
]
]
};
export default config;