Skip to content

Commit af10b61

Browse files
committed
docs: update .vitepress config.js
1 parent 8ff1bb6 commit af10b61

File tree

1 file changed

+25
-20
lines changed

1 file changed

+25
-20
lines changed

docs/content/.vitepress/config.js

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ module.exports = {
77
base: '/vue-quill/',
88
lang: 'en-US',
99
title: 'VueQuill',
10-
description: 'Vue 3 + Quill Component for your powerful text editor. ',
11-
head: [['link', { rel: 'icon', type: 'image/svg+xml', href: '/vue-quill/logo.svg' }]],
10+
description: 'Rich Text Editor Framework for Vue 3.',
11+
head: [
12+
[
13+
'link',
14+
{ rel: 'icon', type: 'image/svg+xml', href: '/vue-quill/logo.svg' },
15+
],
16+
],
1217
themeConfig: {
1318
repo: 'vueup/vue-quill',
1419
logo: '/logo.svg',
@@ -67,63 +72,63 @@ module.exports = {
6772
sidebar: {
6873
'/config/': 'auto',
6974
'/plugins': 'auto',
70-
// catch-all fallback
75+
// catch-all fallback
7176
'/': [
7277
{
7378
text: 'Guide',
7479
children: [
7580
{
7681
text: 'Introduction',
77-
link: '/guide/'
82+
link: '/guide/',
7883
},
7984
{
8085
text: 'Installation',
81-
link: '/guide/installation'
86+
link: '/guide/installation',
8287
},
8388
{
8489
text: 'Usage',
85-
link: '/guide/usage'
90+
link: '/guide/usage',
8691
},
8792
{
8893
text: 'Themes',
89-
link: '/guide/themes'
94+
link: '/guide/themes',
9095
},
9196
{
9297
text: 'Toolbar',
93-
link: '/guide/toolbar'
98+
link: '/guide/toolbar',
9499
},
95100
{
96101
text: 'Options',
97-
link: '/guide/options'
102+
link: '/guide/options',
98103
},
99-
]
104+
],
100105
},
101106
{
102107
text: 'APIs',
103108
children: [
104109
{
105110
text: 'Props',
106-
link: '/api/'
111+
link: '/api/',
107112
},
108113
{
109114
text: 'Events',
110-
link: '/api/events'
115+
link: '/api/events',
111116
},
112117
{
113118
text: 'Methods',
114-
link: '/api/methods'
119+
link: '/api/methods',
115120
},
116121
{
117122
text: 'Slots',
118-
link: '/api/slots'
123+
link: '/api/slots',
119124
},
120125
{
121126
text: 'Export',
122-
link: '/api/export'
127+
link: '/api/export',
123128
},
124-
]
125-
}
126-
]
127-
}
128-
}
129+
],
130+
},
131+
],
132+
},
133+
},
129134
}

0 commit comments

Comments
 (0)