-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocusaurus.config.js
304 lines (289 loc) · 10.8 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
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
// @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/oceanicNext');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'ROXY',
tagline: "FB DEVELO4's BLOG",
url: 'https://roxy.iro.ooo',
trailingSlash: false,
customFields: {
description:
"FB DEVELO4's BLOG 에 어서오세요!\nFront 와 BackEnd 기술 문서와 간단한 블로깅을 함께하고 있습니다!",
image: 'img/wallpaper.png',
},
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
staticDirectories: ['public', 'static'],
favicon: 'img/favicon.ico',
// whatap agent config
headTags: [
{
tagName: 'script',
attributes: {
type: 'text/javascript',
},
innerHTML: `
window.WhatapBrowserAgent = {
config: {
projectAccessKey: 'x4te823r4ri9p-x107ca46a3pivo-z16j3crpakvotc',
pcode: 30152,
sampleRate: 100,
},
};
`,
},
{
tagName: 'script',
attributes: {
src: 'https://repo.whatap-browser-agent.io/rum/prod/v1/whatap-browser-agent.js',
},
},
],
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'https://github.com/rainbow-flavor',
projectName: 'roxy blog', // Usually your repo name.
// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang.
i18n: {
defaultLocale: 'ko',
locales: ['ko'],
},
markdown: { mermaid: true },
themes: ['@docusaurus/theme-mermaid'],
plugins: [
[
'@docusaurus/plugin-content-blog',
{
/**
* 멀티 인스턴스 플러그인 적용 시 필수값으로 설정해야 합니다.
*/
id: 'irostub-blog',
/**
* 사이트에서 블로그 연결 시 사용할 URL 경로를 설정합니다.
* *절대* URL 끝에 슬래시를 붙이지 마세요.
*/
routeBasePath: 'irostub',
showReadingTime: true,
blogSidebarCount: 'ALL',
blogSidebarTitle: '포스트 목록',
/**
* 사이트 디렉터리 기준으로 상대 경로를 지정합니다.
*/
blogTitle: 'Irostub 의 블로그',
blogDescription:
'Irostub 블로그에 어서오세요! 잡글, 연간회고 등 다양한 포스트가 기다리고있어요!',
path: './irostub',
blogPostComponent: require.resolve('./src/theme/BlogPostPage'),
feedOptions: {
type: 'all',
copyright:
'Copyright © 2023 Rainbow-Flavor, written by Hank & Irostub.',
language: 'kr',
},
},
],
[
'@docusaurus/plugin-content-blog',
{
/**
* 멀티 인스턴스 플러그인 적용 시 필수값으로 설정해야 합니다.
*/
id: 'hank-blog',
/**
* 사이트에서 블로그 연결 시 사용할 URL 경로를 설정합니다.
* *절대* URL 끝에 슬래시를 붙이지 마세요.
*/
routeBasePath: 'hank',
showReadingTime: true,
/**
* 사이트 디렉터리 기준으로 상대 경로를 지정합니다.
*/
blogTitle: 'Hank 의 블로그',
path: './hank',
blogPostComponent: require.resolve('./src/theme/BlogPostPage'),
feedOptions: {
type: 'all',
copyright:
'Copyright © 2023 Rainbow-Flavor, written by Hank & Irostub.',
language: 'kr',
},
},
],
[
'@docusaurus/plugin-content-docs',
{
id: 'front',
path: 'front',
routeBasePath: 'front',
sidebarPath: require.resolve('./sidebars.js'),
docItemComponent: require.resolve('./src/theme/DocItem'),
showLastUpdateTime: true,
showLastUpdateAuthor: true,
},
],
[
'@docusaurus/plugin-content-docs',
{
id: 'back',
path: 'back',
routeBasePath: 'back',
sidebarPath: require.resolve('./sidebars.js'),
docItemComponent: require.resolve('./src/theme/DocItem'),
showLastUpdateTime: true,
showLastUpdateAuthor: true,
},
],
[
'@docusaurus/plugin-content-docs',
{
id: 'infra',
path: 'infra',
routeBasePath: 'infra',
sidebarPath: require.resolve('./sidebars.js'),
docItemComponent: require.resolve('./src/theme/DocItem'),
showLastUpdateTime: true,
showLastUpdateAuthor: true,
},
],
[
'@docusaurus/plugin-content-docs',
{
id: 'tips',
path: 'tips',
routeBasePath: 'tips',
sidebarPath: require.resolve('./sidebars.js'),
docItemComponent: require.resolve('./src/theme/DocItem'),
showLastUpdateTime: true,
showLastUpdateAuthor: true,
},
],
],
presets: [
[
'@docusaurus/preset-classic',
{
gtag: { trackingID: 'G-FT5YDE3QE7', anonymizeIP: true },
theme: { customCss: require.resolve('./src/css/custom.css') },
// preset-classic 을 사용할 때, 최소 하나의 docs 는 정의되어있어야한다.
docs: {
path: 'docs',
routeBasePath: 'docs',
lastVersion: 'current',
onlyIncludeVersions: ['current'],
sidebarPath: require.resolve('./sidebars.js'),
},
blog: false,
},
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
{
algolia: {
// 알골리아에서 제공한 appId를 사용하세요.
appId: 'STBZ15YGTR',
// 공개 API 키: 커밋해도 문제가 생기지 않습니다.
apiKey: '8fc5bdaa7a1b2e52c1c00182a11a7ba7',
indexName: 'roxy-iro',
// 옵션: 아래 문서를 참고
contextualSearch: true,
// 옵션: 알골리아 검색 파라미터
searchParameters: {},
// 옵션: 기본적으로 활성화된 검색 페이지 경로(비활성화하려면 `false`로 설정)
searchPagePath: 'search',
//... 다른 알골리아 파라미터
},
announcementBar: {
id: 'announcementBar-2',
content:
'⚠️ Roxy 블로그는 단장중! 지금 보시는 블로그로 이전 게시물을 옮겨오는 중입니다.',
isCloseable: true,
},
image: 'img/wallpaper.png',
metadata: [
{ name: 'name', content: 'ROXY' },
{ name: 'application-name', content: "FB DEVELO4's BLOG" },
{
name: 'description',
content:
"FB DEVELO4's BLOG 에 어서오세요! Front 와 BackEnd 기술 문서와 간단한 블로깅을 함께하고 있습니다!",
},
{ name: 'author', content: 'Irostub & Hank' },
{
name: 'keywords',
content: 'FrontEnd, BackEnd, FE, BE, Document, Blog',
},
{ property: 'og:image', content: 'img/wallpaper.png' },
{
name: 'naver-site-verification',
content: '3ee8592974e5e0d84f4c00106dfd59878efeb6cc',
},
],
colorMode: {
defaultMode: 'dark',
disableSwitch: false,
respectPrefersColorScheme: false,
},
navbar: {
title: 'ROXY',
hideOnScroll: true,
logo: {
alt: 'My Site Logo',
src: 'img/logo_light.png',
srcDark: 'img/logo_dark.png',
},
items: [
{
type: 'docSidebar',
sidebarId: 'front',
label: 'Front',
docsPluginId: 'front',
},
{
type: 'docSidebar',
sidebarId: 'back',
label: 'Back',
docsPluginId: 'back',
},
{
type: 'docSidebar',
sidebarId: 'infra',
label: 'Infra',
docsPluginId: 'infra',
},
{
type: 'docSidebar',
sidebarId: 'tips',
label: 'Tips',
docsPluginId: 'tips',
},
{
type: 'dropdown',
label: 'Blogs',
position: 'left',
items: [
{ to: '/irostub', label: 'Irostub' },
{ to: '/hank', label: 'Hank' },
],
},
{
href: 'https://github.com/rainbow-flavor/roxy-blog',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
copyright: `Copyright © ${new Date().getFullYear()} Rainbow-Flavor, written by Hank & Irostub.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
},
};
module.exports = config;