This repository was archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
147 lines (141 loc) · 4.14 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
// @ts-nocheck
const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
const remarkMath = require("remark-math");
const rehypeKatex = require("rehype-katex");
const pluginImageZoom = require("docusaurus-plugin-image-zoom");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "코딩하는펭귄의 저장소",
tagline: "코딩하는펭귄의 개발 이모저모",
favicon: "/favicon.ico",
titleDelimiter: "@",
url: "https://coodingpenguin.xyz",
baseUrl: "/",
organizationName: "coodingpenguin", // Usually your GitHub org/user name.
projectName: "devlog", // Usually your repo name.
onBrokenLinks: "warn",
onBrokenMarkdownLinks: "warn",
i18n: {
defaultLocale: "ko",
locales: ["ko"],
},
plugins: [pluginImageZoom],
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
path: "wiki",
routeBasePath: "/wiki",
sidebarPath: 'sidebars.js',
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
showLastUpdateTime: true,
},
blog: {
path: "blog",
routeBasePath: "/blog",
blogTitle: "코딩하는펭귄의 일상",
blogDescription: "조금씩 끄적여보는 개발 에세이",
blogSidebarCount: "ALL",
blogSidebarTitle: "끄적이는 중",
postsPerPage: 1,
showReadingTime: false,
feedOptions: {
type: "all",
title: "코딩하는펭귄의 끄적끄적",
description: "코딩하는펭귄은 글쓰는 중",
copyright: `Copyright © ${new Date().getFullYear()} 코딩하는펭귄(CoodingPenguin)`,
language: "ko",
},
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
theme: {
customCss: require.resolve("./src/css/global.css"),
},
sitemap: {
changefreq: "daily",
priority: 0.5,
ignorePatterns: ["/blog/tags/**", "/wiki/tags/**"],
filename: "sitemap.xml",
},
gtag: {
trackingID: "G-53DQ06C3MB",
},
}),
],
],
stylesheets: [
{
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",
},
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
algolia: {
appId: "6GO6RGX99R",
apiKey: "54416d3dc7a6a8a8f32b019a8b562fd7",
indexName: "coodingpenguin",
contextualSearch: true,
searchParameters: {},
searchPagePath: "search",
debug: false,
},
image: "/social-card.png",
navbar: {
title: "코딩하는펭귄의 저장소",
logo: {
alt: "CoodingPenguin Devlog Logo",
src: "/logo.png",
},
items: [
{
to: "/wiki",
label: "개발위키",
position: "left",
},
{
to: "/blog/archive",
label: "끄적끄적",
position: "left",
},
{
href: "https://github.com/coodingpenguin",
position: "right",
className: "header-link header-github-link",
},
{
href: "https://www.instagram.com/cooding_penguin",
position: "right",
className: "header-link header-instagram-link",
},
],
},
footer: {
style: "light",
copyright: `Copyright © ${new Date().getFullYear()} 코딩하는펭귄(CoodingPenguin)`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
zoom: {
selector: ".markdown :not(em) > img",
config: {
background: {
light: "rgb(255, 255, 255)",
dark: "rgb(50, 50, 50)",
},
},
},
}),
};
module.exports = config;