forked from hoppscotch/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
34 lines (34 loc) · 846 Bytes
/
app.config.ts
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
export default defineAppConfig({
docus: {
title: "Hoppscotch Documentation",
titleTemplate: "%s • Hoppscotch Documentation",
description: "Open source API development ecosystem",
url: "https://docs.hoppscotch.io",
image: "https://docs.hoppscotch.io/banner.png",
socials: {
twitter: "hoppscotch_io",
github: "hoppscotch/hoppscotch",
},
header: {
logo: true,
},
footer: {
credits: {
text: "© Hoppscotch",
icon: "",
href: "https://hoppscotch.io",
},
},
aside: {
level: 1,
exclude: ["/guides/videos"], // exclude self-host page from sidebar. TODO: remove this when we launch self-host.
},
github: {
repo: "docs",
branch: "main",
edit: true,
owner: "hoppscotch",
dir: "content",
},
},
})