-
Notifications
You must be signed in to change notification settings - Fork 8
/
docusaurus.config.js
156 lines (150 loc) · 3.97 KB
/
docusaurus.config.js
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Dioxus 中文网",
tagline: "帮助您快速构建可靠的用户界面程序。",
url: "https://dioxus.cn",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName: "dioxus-china", // Usually your GitHub org/user name.
projectName: "Dioxus", // Usually your repo name.
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
editUrl: "https://github.com/DioxusChina/website/tree/master/",
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl: "https://github.com/DioxusChina/website/tree/master/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
}),
],
],
plugins: [
[
"@docusaurus/plugin-pwa",
{
debug: false,
offlineModeActivationStrategies: [
"appInstalled",
"standalone",
"queryString",
],
pwaHead: [
{
tagName: "link",
rel: "icon",
href: "/meta/favicon-96x96.png",
},
{
tagName: "meta",
name: "msapplication-TileImage",
content: "/meta/favicon-144x144.png",
},
{
tagName: "link",
rel: "manifest",
href: "/meta/manifest.json",
},
{
tagName: "meta",
name: "theme-color",
content: "#FFFFFF",
},
{
tagName: "meta",
name: "msapplication-TileColor",
content: "#FFFFFF",
},
],
},
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
title: "Dioxus 中文网",
logo: {
alt: "Logo",
src: "img/logo.svg",
},
items: [
{
type: "doc",
docId: "intro",
position: "left",
label: "教程",
},
{ to: "/blog", label: "博客", position: "left" },
{
href: "https://qm.qq.com/cgi-bin/qm/qr?k=WYctgoX1PhbnVAEXEZOnT2yHY3_D4K4g&jump_from=webapi",
label: "Q群:863409183",
position: "right",
},
{
href: "https://github.com/DioxusChina/",
label: "仓库",
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "文档",
items: [
{
label: "教程文档",
to: "/docs/intro",
},
],
},
{
title: "社区",
items: [
{
label: "QQ 群",
href: "https://qm.qq.com/cgi-bin/qm/qr?k=WYctgoX1PhbnVAEXEZOnT2yHY3_D4K4g&jump_from=webapi",
},
],
},
{
title: "友情链接",
items: [
{
label: "Rust 圣经",
href: "https://course.rs/",
},
{
label: "Rustt 翻译组",
href: "https://rustt.org",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} DioxusChina`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
additionalLanguages: ["rust"],
},
}),
};
module.exports = config;