-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdoczrc.js
More file actions
52 lines (52 loc) · 965 Bytes
/
doczrc.js
File metadata and controls
52 lines (52 loc) · 965 Bytes
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
export default {
base: '/fullstack-for-frontend3/',
src: './src/pages',
// Set output folder to read from GH pages
dest: '/docs',
htmlContext: {
favicon: "/src/images/favicon.ico",
},
themeConfig: {
initialColorMode: 'dark',
colors: {
header: {
bg: 'yellow',
}
},
},
menu: [
{
name: "Introduction",
menu: [
"Introduction",
"Diving In"
],
},
{
name: "Exercises",
menu: [
"Welcome to your terminal",
"VIM",
"Shell configuration",
"Buying VPS",
"SSH Key",
"Logging In",
"Network Tools",
"DNS",
"Buying a domain",
"Nginx",
"Application setup",
"Git",
"Nmap",
"UFW",
"Application updates",
"CI/CD",
"Finding things",
"Databases",
"Login page",
"HTTPS",
"Docker",
],
},
]
}