-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
60 lines (59 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
export default defineAppConfig({
myLayer: {
name: 'Hello from Nuxt layer'
},
ui: {
primary: 'red',
gray: 'cool',
appLogo: {
width: '100%',
height: 'auto',
maxWidth: '132px'
},
icons: {
dark: 'i-heroicons-moon-20-solid',
light: 'i-heroicons-sun-20-solid',
system: 'i-heroicons-computer-desktop-20-solid',
search: 'i-heroicons-magnifying-glass-20-solid',
external: 'i-heroicons-arrow-up-right-20-solid',
chevron: 'i-heroicons-chevron-down-20-solid',
hash: 'i-heroicons-hashtag-20-solid',
menu: 'i-heroicons-bars-3-20-solid',
close: 'i-heroicons-x-mark-20-solid',
check: 'i-heroicons-check-circle-20-solid',
navRoot: 'i-heroicons-book-open',
navFolder: 'i-heroicons-square-3-stack-3d-16-solid',
navPage: 'i-heroicons:document-text',
navNext: 'i-heroicons-arrow-left-20-solid',
navPrev: 'i-heroicons-arrow-right-20-solid',
navDocs: 'i-heroicons:book-open',
navApi: 'i-heroicons:square-3-stack-3d',
navDemo: 'i-heroicons:computer-desktop'
}
},
seo: {
siteName: 'Nuxt UI VC Doc',
siteDescription: 'Nuxt UI VC Doc Template',
docsHeaderTemplate: '%s | UI VC Doc',
apiHeaderTemplate: '%s | UI VC Doc',
indexHeaderTemplate: ''
},
header: {
version: '',
showSiteName: true,
apiLinkName: 'Api',
exampleLinkName: 'Demo'
// height: '200px'
}
// footer: {
//
// }
})
declare module '@nuxt/schema' {
interface AppConfigInput {
myLayer?: {
/** Project name */
name?: string
}
}
}