-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.ts
409 lines (387 loc) · 14.1 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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
import { themes as prismThemes } from "prism-react-renderer";
import type { Config } from "@docusaurus/types";
import type * as Preset from "@docusaurus/preset-classic";
// 수학식 표기
import remarkMath from "remark-math";
import rehypeKatex from "rehype-katex";
import PrismLight from "./src/utils/prismLight";
import PrismDark from "./src/utils/prismDark";
// 이 파일은 Node.js에서 실행됩니다 - 여기에서는 클라이언트 사이드 코드(브라우저 API, JSX 등)를 사용하지 마세요.
const config: Config = {
// 사이트 제목 설정
title: `Zen's Atelier`,
staticDirectories: ["public", "static"],
// 사이트 태그라인 설정
tagline: "생각의 동기화를 바탕으로 몰입을 이끌어내는 개발자",
// 파비콘 설정
favicon: "img/favicon.ico",
// 사이트의 프로덕션 URL을 설정하세요.
url: "https://fantasmith.com",
// 사이트가 제공되는 /<baseUrl>/ 경로명을 설정하세요.
baseUrl: "/",
// GitHub 페이지 배포 구성.
// GitHub 페이지를 사용하지 않는다면, 이 설정은 필요 없습니다.
organizationName: "effozen", // 일반적으로 GitHub 조직/사용자 이름입니다.
projectName: "FantaSmith", // 일반적으로 저장소 이름입니다.
// 깨진 링크에 대한 동작 설정
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
// 국제화를 사용하지 않더라도, 이 필드를 통해 유용한 메타데이터를 설정할 수 있습니다.
i18n: {
defaultLocale: "ko",
locales: ["ko", "en"],
},
// 프리셋 설정
presets: [
[
"classic",
{
docs: false,
blog: false,
// blog: {
// showReadingTime: true,
// feedOptions: {
// type: ['rss', 'atom'],
// xslt: true,
// },
// // 리포지토리를 변경하세요.
// // "이 페이지를 편집하세요" 링크를 제거하려면 이 부분을 삭제하세요.
// editUrl: 'https://github.com/effozen/fantasmith/tree/main/',
// // 블로깅 모범 사례를 강제하기 위한 유용한 옵션
// onInlineTags: 'warn',
// onInlineAuthors: 'warn',
// onUntruncatedBlogPosts: 'warn',
// blogSidebarTitle: '📝 Posts',
// routeBasePath: 'blog',
// },
theme: {
customCss: "./src/css/custom.css",
},
gtag: {
trackingID: "G-TNMDGQWQYM",
anonymizeIP: true,
},
} satisfies Preset.Options,
],
],
// 플러그인 설정 (라우트 등 동시에 설정)
plugins: [
[
"@docusaurus/plugin-content-docs",
{
id: "blog", // 문서의 ID
path: "./docs/blog", // 문서가 위치한 디렉토리
routeBasePath: "blog", // 라우트의 기본 경로
sidebarPath: require.resolve("./sidebars.ts"), // 사이드바 구성 파일
editUrl: "https://github.com/effozen/fantasmith/tree/main/", // 문서 편집 링크
showLastUpdateTime: true, // 마지막 업데이트 시간 표시
sidebarCollapsible: false, // 사이드바 접기/펼치기
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "feedback_log", // 문서의 ID
path: "./docs/feedback_log", // 문서가 위치한 디렉토리
routeBasePath: "feedback_log", // 라우트의 기본 경로
sidebarPath: require.resolve("./sidebars.ts"), // 사이드바 구성 파일
editUrl: "https://github.com/effozen/fantasmith/tree/main/", // 문서 편집 링크
showLastUpdateTime: true, // 마지막 업데이트 시간 표시
sidebarCollapsible: false, // 사이드바 접기/펼치기
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "development", // 문서의 ID
path: "./docs/development", // 문서가 위치한 디렉토리
routeBasePath: "development", // 라우트의 기본 경로
sidebarPath: require.resolve("./sidebars.ts"), // 사이드바 구성 파일
editUrl: "https://github.com/effozen/fantasmith/tree/main/", // 문서 편집 링크
showLastUpdateTime: true, // 마지막 업데이트 시간 표시
sidebarCollapsible: false, // 사이드바 접기/펼치기
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "react-lab", // 문서의 ID
path: "./docs/react-lab", // 문서가 위치한 디렉토리
routeBasePath: "react-lab", // 라우트의 기본 경로
sidebarPath: require.resolve("./sidebars.ts"), // 사이드바 구성 파일
editUrl: "https://github.com/effozen/fantasmith/tree/main/", // 문서 편집 링크
showLastUpdateTime: true, // 마지막 업데이트 시간 표시
sidebarCollapsible: false, // 사이드바 접기/펼치기
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "frontEnd", // 문서의 ID
path: "./docs/frontEnd", // 문서가 위치한 디렉토리
routeBasePath: "frontEnd", // 라우트의 기본 경로
sidebarPath: require.resolve("./sidebars.ts"), // 사이드바 구성 파일
editUrl: "https://github.com/effozen/fantasmith/tree/main/", // 문서 편집 링크
showLastUpdateTime: true, // 마지막 업데이트 시간 표시
sidebarCollapsible: false, // 사이드바 접기/펼치기
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "challenge", // 문서의 ID
path: "./docs/challenge", // 문서가 위치한 디렉토리
routeBasePath: "challenge", // 라우트의 기본 경로
sidebarPath: require.resolve("./sidebars.ts"), // 사이드바 구성 파일
editUrl: "https://github.com/effozen/fantasmith/tree/main/", // 문서 편집 링크
showLastUpdateTime: true, // 마지막 업데이트 시간 표시
sidebarCollapsible: false, // 사이드바 접기/펼치기
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "skills", // 문서의 ID
path: "./docs/skills", // 문서가 위치한 디렉토리
routeBasePath: "skills", // 라우트의 기본 경로
sidebarPath: require.resolve("./sidebars.ts"), // 사이드바 구성 파일
editUrl: "https://github.com/effozen/fantasmith/tree/main/", // 문서 편집 링크
showLastUpdateTime: true, // 마지막 업데이트 시간 표시
sidebarCollapsible: false, // 사이드바 접기/펼치기
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
],
"docusaurus-plugin-image-zoom",
"@docusaurus/theme-live-codeblock",
],
// 테마 구성
themeConfig: {
// 사이트의 기본 Open Graph 및 Twitter 카드 이미지를 설정합니다.
image: "img/social-card.webp", // 원하는 이미지로 변경
algolia: {
// The application ID provided by Algolia
appId: "MHKBL5OI7D",
// Public API key: it is safe to commit it
apiKey: "62da566c05ccf76540fa1c50d0e3ea01",
indexName: "fantasmith",
// Optional: see doc section below
contextualSearch: true,
// // Optional: Specify domains where the navigation should occur through window.location instead on history.push. Useful when our Algolia config crawls multiple documentation sites and we want to navigate with window.location.href to them.
// externalUrlRegex: "external\\.com|domain\\.com",
// // Optional: Replace parts of the item URLs from Algolia. Useful when using the same search index for multiple deployments using a different baseUrl. You can use regexp or string in the `from` param. For example: localhost:3000 vs myCompany.com/docs
// replaceSearchResultPathname: {
// from: "/docs/", // or as RegExp: /\/docs\//
// to: "/",
// },
// Optional: Algolia search parameters
searchParameters: {},
// Optional: path for search page that enabled by default (`false` to disable it)
searchPagePath: "search",
// Optional: whether the insights feature is enabled or not on Docsearch (`false` by default)
insights: false,
//... other Algolia params
},
prism: {
additionalLanguages: [
"markup",
"jsx",
"tsx",
"swift",
"kotlin",
"objectivec",
"js-extras",
"reason",
"rust",
"graphql",
"yaml",
"go",
"cpp",
"markdown",
"python",
"json",
"java",
"latex",
"haskell",
"matlab",
"php",
"powershell",
"bash",
"diff",
"scss",
],
magicComments: [
{
className: "theme-code-block-highlighted-line",
line: "highlight-next-line",
block: { start: "highlight-start", end: "highlight-end" },
},
{
className: "code-block-error-line",
line: "error-next-line",
block: { start: "error-start", end: "error-end" },
},
],
theme: PrismLight,
darkTheme: PrismDark,
},
zoom: {
selector: ".markdown :not(em) > img",
background: {
light: "rgb(255, 255, 255)",
dark: "rgb(50, 50, 50)",
},
config: {
// options you can specify via https://github.com/francoischalifour/medium-zoom#usage
margin: 24,
scrollOffset: 600,
},
},
docs: {
sidebar: {
hideable: true, // 사용자가 숨기거나 펼칠 수 있도록 함
// autoCollapseCategories: true, // 모든 카테고리가 기본적으로 펼쳐지도록 설정
},
},
navbar: {
hideOnScroll: true,
logo: {
alt: "사이트 로고",
src: "img/logo_black.webp",
srcDark: "img/logo_white.webp",
width: 32,
height: 32,
},
items: [
{ to: "/about", label: "About", position: "left" },
{
to: "/blog",
type: "dropdown",
label: "Blog",
position: "left",
items: [
{ to: "/blog", label: "Blog" },
{ to: "/feedback_log", label: "Habbit" },
],
},
{
to: "/development",
type: "dropdown",
label: "Development",
position: "left",
items: [
{ to: "/development", label: "Development" },
{ to: "/react-lab", label: "React-Lab" },
{ to: "/frontEnd", label: "Front-End" },
{ to: "/challenge", label: "Challenge" },
{ to: "/skills", label: "개발 실력 키우기" },
],
},
{ to: "/project", label: "Project", position: "left" },
{
href: "https://github.com/effozen/fantasmith",
position: "right",
className: "header-github-link",
"aria-label": "GitHub repository",
},
],
},
footer: {
copyright: `Copyright © ${new Date().getFullYear()} Zen. Built with Docusaurus.`,
},
// prism: {
// theme: prismThemes.github,
// darkTheme: prismThemes.dracula,
// },
liveCodeBlock: {
/**
* 라이브 플레이그라운드의 위치를 지정합니다. 에디터 위나 아래에 배치할 수 있습니다.
* 가능한 값: "top" | "bottom"
*/
playgroundPosition: "bottom",
},
// SEO 및 링크 미리보기를 위한 메타데이터 설정
metadata: [
// { name: "author", content: "Zen" },
// {
// name: "keywords",
// content: "프론트엔드 개발, 동기화, Zen, 블로그, 프로그래밍, 몰입",
// },
// { name: "twitter:card", content: "summary_large_image" },
// // 전역 타이틀 및 설명을 설정하되, 개별 페이지에서 덮어쓸 수 있도록 합니다.
// { name: "twitter:url", content: "https://fantasmith.com" },
// { property: "og:type", content: "website" },
// { property: "og:title", content: "Zen's Atelier" },
// {
// property: "og:description",
// content: "생각의 동기화를 바탕으로 몰입을 이끌어내는 개발자",
// },
// {
// property: "og:image",
// content: "https://fantasmith.com/img/social-card.webp",
// },
// { property: "og:url", content: "https://fantasmith.com" },
],
} satisfies Preset.ThemeConfig,
stylesheets: [
"src/css/custom.css", // Tailwind CSS가 포함된 CSS 파일 경로
{
href: "https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css",
type: "text/css",
integrity:
"sha384-odtC+0UGzzFL/6PNoE8rX/SPcQDXBJ+uRepguP4QkPCm2LBxH3FA3y+fKSiJ+AmM",
crossorigin: "anonymous",
},
],
// 추가 테마 설정
themes: ["@docusaurus/theme-mermaid"],
// Markdown에서 Mermaid 코드 블록을 사용하려면,
// 이 옵션으로 Remark 플러그인을 활성화해야 합니다.
markdown: {
mermaid: true,
},
// head 태그 설정
headTags: [
{
tagName: "link",
attributes: {
rel: "sitemap",
type: "application/xml",
title: "Sitemap",
href: "https://fantasmith.com/sitemap.xml",
},
},
{
tagName: "script",
attributes: {
type: "application/ld+json",
},
innerHTML: JSON.stringify({
"@context": "https://schema.org",
"@type": "Person",
name: "Zen",
url: "https://fantasmith.com",
sameAs: [
"https://github.com/effozen",
"https://www.linkedin.com/in/effozen/",
"https://x.com/effozen",
],
jobTitle: "프론트엔드 개발자",
description: "생각의 동기화를 통해 몰입을 이끌어내는 개발자",
}),
},
],
};
export default config;