-
Notifications
You must be signed in to change notification settings - Fork 2
/
docusaurus.config.ts
281 lines (274 loc) · 9.52 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
import type { Config } from '@docusaurus/types';
import type * as Blog from '@docusaurus/plugin-content-blog';
import type * as Redirects from '@docusaurus/plugin-client-redirects';
import type * as Pages from '@docusaurus/plugin-content-pages';
import type * as Docs from '@docusaurus/plugin-content-docs';
import type * as ThemeCommon from '@docusaurus/theme-common';
import type * as ThemeClassic from '@docusaurus/theme-classic';
import { themes } from 'prism-react-renderer';
const config: Config = {
plugins: [
[
"@docusaurus/plugin-content-pages",
{
path: "src/pages",
routeBasePath: "/",
include: ["**/*.{js,jsx,ts,tsx,md,mdx}"],
exclude: [
"**/_*.{js,jsx,ts,tsx,md,mdx}",
"**/_*/**",
"**/*.test.{js,jsx,ts,tsx}",
"**/__tests__/**",
],
remarkPlugins: [require('@docusaurus/remark-plugin-npm2yarn')],
mdxPageComponent: "@theme/MDXPage",
} satisfies Pages.Options,
],
[
"@docusaurus/plugin-content-blog",
{
path: "blog",
blogTitle: "ブログ",
blogDescription: "誰も書かない(泣)",
blogSidebarCount: 5,
blogSidebarTitle: "All our posts",
routeBasePath: "blog",
include: ["**/*.{md,mdx}"],
exclude: [
"**/_*.{js,jsx,ts,tsx,md,mdx}",
"**/_*/**",
"**/*.test.{js,jsx,ts,tsx}",
"**/__tests__/**",
],
postsPerPage: 10,
blogListComponent: "@theme/BlogListPage",
blogPostComponent: "@theme/BlogPostPage",
blogTagsListComponent: "@theme/BlogTagsListPage",
blogTagsPostsComponent: "@theme/BlogTagsPostsPage",
rehypePlugins: [],
remarkPlugins: [
[
require('@docusaurus/remark-plugin-npm2yarn'),
{ converters: ['pnpm', 'yarn'] },
],
],
beforeDefaultRemarkPlugins: [],
beforeDefaultRehypePlugins: [],
truncateMarker: /({\/\*|<!--)\s*(truncate|見出し)\s*(\*\/|-->)/,
showReadingTime: true,
feedOptions: {
type: [
'rss',
'atom',
'json',
],
title: "Met's Server Blog feed",
description: "",
copyright: `Copyright © ${new Date().getFullYear()} Met's Server`,
language: undefined,
createFeedItems: async (params) => {
const { blogPosts, defaultCreateFeedItems, ...rest } = params;
return defaultCreateFeedItems({
// keep only the 10 most recent blog posts in the feed
blogPosts: blogPosts.filter((item, index) => index < 10),
...rest,
});
},
} satisfies Blog.FeedOptions,
} satisfies Blog.Options,
],
[
"@docusaurus/plugin-client-redirects",
{
fromExtensions: ["html", "htm", "md", "mdx"], // /myPage.html -> /myPage
toExtensions: ["exe", "zip"], // /myAsset -> /myAsset.zip (存在すれば)
redirects: [
{
to: "/legal",
from: ["/terms-index", "/terms/list"],
},
{
to: "/legal/group",
from: ["/group", "/terms/group"],
},
{
to: "/legal/minecraft",
from: ["/minecraft", "/terms/minecraft"],
},
{
to: "/legal/community-guideline",
from: ["/community-guideline", "/terms/community-guideline"],
},
{
to: "/legal/terms",
from: ["/terms"],
},
],
} satisfies Redirects.Options,
],
[
"@docusaurus/plugin-content-docs",
{
path: "docs",
breadcrumbs: true,
editUrl: ({ versionDocsDirPath, docPath }) =>
`https://github.com/mets-org/www.mets-svr.com/edit/main/${versionDocsDirPath}/${docPath}`,
editLocalizedFiles: false,
editCurrentVersion: false,
routeBasePath: "docs",
include: ["**/*.md", "**/*.mdx"],
exclude: [
"**/_*.{js,jsx,ts,tsx,md,mdx}",
"**/_*/**",
"**/*.test.{js,jsx,ts,tsx}",
"**/__tests__/**",
],
remarkPlugins: [
[require('@docusaurus/remark-plugin-npm2yarn'), { sync: true }],
],
docItemComponent: "@theme/DocItem",
showLastUpdateAuthor: true,
showLastUpdateTime: true,
} satisfies Docs.Options,
],
],
themes: [
[
"@docusaurus/theme-classic",
{
customCss: [
"static/css/custom.css"
],
} satisfies ThemeClassic.Options,
],
],
scripts: [
{
src: "/js/query-scroller.js",
defer: true,
},
],
baseUrl: "/",
i18n: {
defaultLocale: "ja",
locales: ["ja"],
localeConfigs: {
ja: {
htmlLang: "ja",
},
},
},
title: "Met's Server",
url: "https://www.mets-svr.com/",
trailingSlash: false,
tagline: "Met is so cool!",
organizationName: "Mets-org",
projectName: "www.mets-svr.com",
deploymentBranch: "gh-pages",
favicon: "img/logo.svg",
themeConfig: {
colorMode: {
defaultMode: "light",
disableSwitch: false,
respectPrefersColorScheme: true,
},
navbar: {
title: "Met's Server",
hideOnScroll: false,
logo: {
alt: "Logo",
src: "/img/logo.svg",
width: 32,
height: 32,
},
items: [
{
to: "blog",
label: "Blog",
position: "left",
},
{
to: "legal",
label: "Terms",
position: "left",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Learn",
items: [
{
label: "Document",
href: "docs"
},
],
},
{
title: "Social",
items: [
{
label: "Discord",
href: "https://discord.gg/jG332tPs2D",
},
{
label: "GitHub",
href: "https://github.com/Mets-org",
},
{
label: "Twitter",
href: "https://twitter.com/mets_server",
},
],
},
{
title: "Legal",
items: [
{
label: "Terms",
to: "legal/terms",
},
{
label: "Minecraft Terms",
to: "legal/minecraft",
},
{
label: "Community Guideline",
to: "legal/community-guideline",
},
{
label: "Terms for Groups",
to: "legal/group",
},
],
},
],
logo: {
alt: "Met's Server Logo",
src: "img/logo.svg",
href: "https://mets-svr.com/",
width: 32,
height: 32,
},
copyright: `Copyright © ${new Date().getFullYear()} Met's Server`,
},
prism: {
theme: themes.github,
darkTheme: themes.dracula,
magicComments: [
{
className: 'theme-code-block-highlighted-line',
line: 'highlight-next-line',
block: { start: 'highlight-start', end: 'highlight-end' },
},
{
className: 'code-block-error-line',
line: 'This will error',
},
],
},
} satisfies ThemeCommon.UserThemeConfig,
};
export default config;