-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.config.ts
36 lines (36 loc) · 947 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
35
36
export default defineAppConfig({
docux: {
title: 'Conventional Emoji Commits',
description: 'A specification for adding human and machine readable meaning to commit messages using color-rich emojis 🌈',
image: 'https://github.com/nyxb/docux/blob/main/.github/images/docux_repo_picture.png',
socials: {
github: 'conventional-emoji-commits',
},
github: {
dir: 'content',
branch: 'main',
repo: 'conventional-emoji-commits.site',
owner: 'conventional-emoji-commits',
edit: true,
},
aside: {
level: 1,
collapsed: false,
exclude: [],
navigation: true,
},
main: {
padded: true,
},
header: {
title: '',
logo: true,
showLinkIcon: true,
exclude: [],
navigation: false,
},
footer: {
iconLinks: [],
},
},
})