-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.config.ts
82 lines (82 loc) · 1.8 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
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
export default defineAppConfig({
docus: {
title: 'EmulatorJS',
description: 'A tool to embed an emulator into your website',
url: 'https://emulatorjs.org',
image: 'https://emulatorjs.org/logo/EmulatorJS Logo.png',
socials: {
github: 'EmulatorJS/EmulatorJS',
discord: {
label: 'Join our Discord',
href: 'https://discord.gg/6akryGkETU',
icon: 'fa-brands:discord',
rel: '',
target: '_blank'
},
matrix: {
label: 'Join the Matrix!',
href: 'https://matrix.to/#/#emulatorjs:matrix.emulatorjs.org',
icon: 'simple-icons:matrix',
rel: '',
target: '_blank'
}
},
layout: 'default',
header: {
title: 'EmulatorJS',
logo: {
light: "/logo/EmulatorJS Header.png",
dark: "/logo/EmulatorJS Header Light.png"
},
showLinkIcon: true,
fluid: true,
exclude: []
},
navigation: {
enabled: true,
links: [
{
text: 'Home',
href: '/'
},
{
text: 'Documentation',
href: '/docs'
},
{
text: 'Code Editor',
href: '/editor'
},
{
text: 'Demo',
href: 'https://demo.emulatorjs.org',
target: '_blank'
}
],
},
main: {
fluid: true
},
aside: {
level: 0,
collapsed: false,
exclude: []
},
footer: {
credits: {
icon: 'fa-solid:gamepad',
text: 'Made with ❤️ by @ethanaobrien & @allancoding',
href: 'https://github.com/EmulatorJS'
},
textLinks: [],
iconLinks: [],
fluid: false
},
github: {
branch: "main",
repo: "emulatorjs.org",
owner: "EmulatorJS",
edit: true
},
}
})