forked from huff-language/huff-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
62 lines (58 loc) · 1.51 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
const { description } = require("../../package");
module.exports = {
title: "Wrappr",
description: description,
homepage: "http://docs.wrappr.wtf/",
head: [
["meta", { name: "theme-color", content: "#30FDFD" }],
["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.wrappr.wtf/',
docsRepo: 'https://github.com/kalidao/wrappr-docs',
docsBranch: 'main',
docsDir: "src",
nav: [
{ text: "Home", link: "/" },
{ text: "Get Started", link: "/get-started/what/" },
{ text: "Legal Setup", link: "/how-to/quick-notes/" },
{ text: "Create", link: "/create/" },
{ text: "Explore", link: "/explore/" },
],
sidebarDepth: 10,
sidebar: {
"/get-started/": [
{
title: "Getting Started",
collapsable: false,
children: [
"/get-started/what/",
"/get-started/where/",
],
},
],
"/how-to/": [
{
title: "Legal Setup",
collapsable: false,
children: [
"/how-to/quick-notes/",
"/how-to/LLC/",
"/how-to/non-profit/",
"/how-to/charter/",
],
},
],
},
smoothScroll: true,
},
};