forked from nuxt/fonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
56 lines (56 loc) · 1.27 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
export default defineAppConfig({
ui: {
primary: 'green',
gray: 'slate',
footer: {
bottom: {
left: 'text-sm text-gray-500 dark:text-gray-400',
wrapper: 'border-t border-gray-200 dark:border-gray-800',
},
},
},
seo: {
siteName: 'Nuxt Fonts',
},
header: {
title: 'Nuxt Fonts',
logo: {
alt: '',
light: '',
dark: '',
},
search: true,
colorMode: true,
links: [{
'icon': 'i-simple-icons-github',
'to': 'https://github.com/nuxt/fonts',
'target': '_blank',
'aria-label': 'Nuxt Fonts on GitHub',
}],
},
footer: {
credits: 'Copyright © 2023',
colorMode: false,
links: [{
'icon': 'i-simple-icons-nuxtdotjs',
'to': 'https://nuxt.com',
'target': '_blank',
'aria-label': 'Nuxt Website',
}, {
'icon': 'i-simple-icons-discord',
'to': 'https://chat.nuxt.dev',
'target': '_blank',
'aria-label': 'Nuxt on Discord',
}, {
'icon': 'i-simple-icons-x',
'to': 'https://x.com/nuxt_js',
'target': '_blank',
'aria-label': 'Nuxt on X',
}, {
'icon': 'i-simple-icons-github',
'to': 'https://github.com/nuxt/nux',
'target': '_blank',
'aria-label': 'Nuxt on GitHub',
}],
},
})