-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.config.ts
51 lines (51 loc) · 1.18 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
export default defineAppConfig({
docus: {
title: 'Lupus Decoupled Drupal',
description: 'The power of Drupal with a modern frontend.',
url: 'https://lupus-decoupled.org',
image: '/logo.png',
socials: {
github: 'drunomics/lupus-decoupled-project'
},
github: {
dir: 'content',
branch: 'main',
repo: 'lupus-decoupled-website',
owner: 'drunomics',
edit: true
},
aside: {
level: 0,
collapsed: false,
exclude: []
},
main: {
padded: true,
fluid: false
},
header: {
logo: true,
title: 'Lupus Decoupled Drupal',
fluid: false
},
footer: {
credits: {
text: 'A project supported by drunomics',
icon: 'DrunomicsIcon',
href: 'https://drunomics.com/en',
},
iconLinks: [
{
href: 'https://drupal.org/project/lupus_decoupled',
label: 'Lupus Decoupled Drupal',
icon: 'simple-icons:drupal'
},
{
href: 'https://github.com/drunomics/nuxtjs-drupal-ce',
label: 'Nuxt Drupal Custom Elements Connector',
icon: 'simple-icons:nuxtdotjs'
}
]
}
}
})