-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathapp.config.ts
More file actions
54 lines (54 loc) · 1.14 KB
/
app.config.ts
File metadata and controls
54 lines (54 loc) · 1.14 KB
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
export default defineAppConfig({
agent: {
faqQuestions: [
{
category: 'Getting Started',
items: [
'Show me available starter templates',
'What\'s new in Nuxt 4?',
'How do I add authentication to my Nuxt app?'
]
},
{
category: 'Features',
items: [
'useFetch vs useAsyncData?',
'How does file-based routing work?',
'How do I connect a database to my Nuxt app?'
]
},
{
category: 'Deploy & Explore',
items: [
'How do I deploy my Nuxt app?',
'What are the available rendering modes?',
'How do I add SEO meta tags in Nuxt?'
]
}
]
},
ui: {
colors: {
primary: 'green',
neutral: 'slate',
important: 'violet'
},
pageHero: {
slots: {
container: 'py-10 sm:py-20 lg:py-20',
title: 'sm:text-5xl'
}
},
prose: {
img: {
base: 'w-full'
},
codeTree: {
slots: {
root: 'bg-default m-0',
content: '[&>div>pre]:rounded-r-none'
}
}
}
}
})