forked from doulit/doul-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoczrc.js
50 lines (50 loc) · 1.14 KB
/
doczrc.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
export default {
title: "도울정보기술 개발문서 서비스",
// base: "/docz/"
// files: ["**/*.{mdx,markdown,png}"],
ignore: ["README.md"],
menu: [
"Getting Started",
// "Architectures",
// "Deployments",
// "Components",
// "Setup",
{ name: "Architectures", menu: ["Overview", "Backend", "Frontend"] },
{
name: "Development Setup",
menu: [
"Develop Guide",
"Proxy Server Squid",
"Package Manager",
"Docker",
"Django",
"React",
"GitLab",
"GitLab-CI",
"CI/CD Pipeline",
"Visual Studio Code",
],
},
{ name: "Development", menu: ["Docker", "Django", "React", "개발표준"] },
{
name: "Server Settings",
menu: ["Container", "Nexus3", "Develop & Production"],
},
"Components",
],
themeConfig: {
colors: {
text: "#333",
background: "#fff",
primary: "tomato",
headers: {
bg: "tomato",
},
},
fonts: {
body: "system-ui, sans-serif",
heading: '"Avenir Next", sans-serif',
monospace: "D2Coding, Menlo, monospace",
},
},
};