-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathnuxt.schema.ts
184 lines (184 loc) · 4.2 KB
/
nuxt.schema.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
export default defineNuxtSchema({
appConfig: {
/**
* Alpine theme configuration.
*
* @studioIcon carbon:blog
*/
alpine: {
/**
* Website title, used as header default title and meta title.
*
* @studioIcon material-symbols:title
*/
title: 'Alpine',
/**
* Website description, used for meta description.
*
* @studioIcon material-symbols:description
*/
description: 'The minimalist blog theme',
/**
* Cover image.
*
* @example '/cover.jpg'
*
* @studioIcon dashicons:cover-image
*/
image: {
/**
* @example '/cover.jpg'
* @studioIcon dashicons:cover-image
* @studioInput file
*/
src: '/social-card-preview.png',
alt: 'An image showcasing my project.',
width: 400,
height: 300
},
/**
* Header configuration.
*
* @studioIcon fluent:document-header-24-regular
*/
header: {
/**
* Header position.
*
* @type {'left'|'center'|'right'}
*/
position: 'right',
/**
* Header logo.
*
* @studioIcon dashicons:cover-image
*/
logo: {
/**
* Path of the logo.
*
* @studioIcon dashicons:cover-image
* @studioInput file
*/
path: '/logo.svg',
/**
* Path of the logo in dark mode.
*
* Leave it empty if you want to use the same logo.
*
* @studioIcon dashicons:cover-image
* @studioInput file
*/
pathDark: '/logo-dark.svg',
/**
* Alt description for the image.
*/
alt: 'Alpine theme logo'
}
},
/**
* Footer configuration.
*
* @studioIcon fluent:document-footer-24-regular
*/
footer: {
/**
* Footer credits.
*/
credits: {
/**
* Toggle the footer.
*/
enabled: true,
/**
* Text to be displayed.
*/
text: 'Alpine',
/**
* GitHub repository link.
*/
repository: 'https://www.github.com/nuxt-themes/alpine'
},
/**
* Toggle the navigation.
*/
navigation: true, // possible value are : true | false
/**
* Footer position.
*
* @type {'left'|'center'|'right'}
*/
alignment: 'center',
/**
* Footer message.
*
* Leave it empty to disable.
*/
message: 'Follow me on'
},
/**
* Icons to be added to Social Icons in footer.
*
* @studioIcon material-symbols:add-link
*/
socials: {
/**
* Twitter handle
* @example 'nuxt_js'
* @studioIcon simple-icons:twitter
*/
twitter: '',
/**
* Instagram handle
* @example 'wearenuxt'
* @studioIcon simple-icons:instagram
*/
instagram: '',
/**
* GitHub path
* @example 'nuxt-themes/alpine'
* @studioIcon simple-icons:github
*/
github: '',
/**
* GitHub path
* @example 'nuxt'
* @studioIcon simple-icons:facebook
*/
facebook: '',
/**
* Medium handle
* @example 'nuxt'
* @studioIcon simple-icons:medium
*/
medium: '',
/**
* Youtube handle
* @example '@nuxtlabs'
* @studioIcon simple-icons:youtube
*/
youtube: ''
},
/**
* Contact form configuration.
*
* @studioIcon ion:ios-paperplane
*/
form: {
/**
* Success message.
*/
successMessage: 'Message sent. Thank you!'
},
/**
* Back to top button configuration.
*
* @studioIcon material-symbols:arrow-upward
*/
backToTop: {
icon: 'material-symbols:arrow-upward',
text: 'Back to top',
}
}
}
})