This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathconfig.js
88 lines (84 loc) · 2.37 KB
/
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
const { description } = require("../../package");
module.exports = {
title: "Huff Language",
description: description,
//homepage: "http://docs.huff.sh/",
head: [
["meta", { name: "theme-color", content: "#c70202" }],
["meta", { name: "apple-mobile-web-app-capable", content: "yes" }],
[
"meta",
{ name: "apple-mobile-web-app-status-bar-style", content: "black" },
],
],
plugins: [["@dovyp/vuepress-plugin-clipboard-copy", true]],
theme: "default-prefers-color-scheme",
themeConfig: {
overrideTheme: "dark",
ostname: "https://docs.huff.sh",
docsRepo: "https://github.com/huff-language/huff-docs",
docsBranch: "main",
docsDir: "src",
nav: [
{ text: "Home", link: "/" },
{ text: "Get Started", link: "/get-started/overview/" },
{ text: "Tutorials", link: "/tutorial/overview/" },
{ text: "Style Guide", link: "/style-guide/overview/" },
{ text: "Resources", link: "/resources/overview/" },
{ text: "Contribute", link: "/contribute/overview/" },
],
sidebarDepth: 10,
sidebar: {
"/get-started/": [
{
title: "Get Started",
collapsable: false,
children: [
"/get-started/overview/",
"/get-started/installing/",
"/get-started/compiling/",
"/get-started/project-quickstart/",
"/get-started/huff-by-example/",
],
},
],
"/tutorial/": [
{
title: "Tutorials",
collapsable: false,
children: [
"/tutorial/overview/",
"/tutorial/evm-basics/",
"/tutorial/the-basics/",
"/tutorial/hello-world/",
"/tutorial/simple-storage/",
"/tutorial/function-dispatching/",
"/tutorial/huff-testing/",
],
},
],
"/style-guide/": [
{
title: "Style Guide",
collapsable: false,
children: ["/style-guide/overview/"],
},
],
"/resources/": [
{
title: "Resources",
collapsable: false,
children: ["/resources/overview/", "/resources/cli/"],
},
],
"/contribute/": [
{
title: "Contribute",
collapsable: false,
children: ["/contribute/overview/"],
},
],
},
smoothScroll: true,
},
};