@@ -15,6 +15,19 @@ export default defineConfig({
15
15
lang : 'en-US' ,
16
16
title : headTitle ,
17
17
description : headDescription ,
18
+
19
+ markdown : {
20
+ theme : {
21
+ dark : 'dracula-soft' ,
22
+ light : 'vitesse-light' ,
23
+ } ,
24
+
25
+ attrs : {
26
+ leftDelimiter : '%{' ,
27
+ rightDelimiter : '}%' ,
28
+ } ,
29
+ } ,
30
+
18
31
head : [
19
32
[ 'meta' , { name : 'theme-color' , content : '#ffe183' } ] ,
20
33
[ 'link' , { rel : 'icon' , href : '/logo.svg' , type : 'image/svg+xml' } ] ,
@@ -76,7 +89,7 @@ export default defineConfig({
76
89
footer : {
77
90
message : 'Released under the MIT License.' ,
78
91
copyright :
79
- 'Copyright © 2016-PRESENT Eduardo San Martin Morote and VueFire contributors' ,
92
+ 'Copyright © 2016-present Eduardo San Martin Morote and VueFire contributors' ,
80
93
} ,
81
94
82
95
carbonAds : {
@@ -125,12 +138,12 @@ export default defineConfig({
125
138
} ,
126
139
} )
127
140
128
- type SidebarGroup = DefaultTheme . SidebarGroup
141
+ type SidebarGroup = DefaultTheme . SidebarItem
129
142
130
143
function sidebarGuide ( ) : SidebarGroup {
131
144
return {
132
145
text : 'Guide' ,
133
- collapsible : true ,
146
+ collapsed : false ,
134
147
items : [
135
148
{
136
149
text : 'Why VueFire' ,
@@ -183,7 +196,7 @@ function sidebarGuide(): SidebarGroup {
183
196
184
197
function sidebarNuxt ( ) : SidebarGroup {
185
198
return {
186
- collapsible : true ,
199
+ collapsed : false ,
187
200
text : 'Nuxt' ,
188
201
items : [
189
202
{
@@ -212,7 +225,7 @@ function sidebarNuxt(): SidebarGroup {
212
225
213
226
function sidebarCookbook ( ) : SidebarGroup {
214
227
return {
215
- collapsible : true ,
228
+ collapsed : false ,
216
229
text : 'Cookbook' ,
217
230
items : [
218
231
{
@@ -233,7 +246,6 @@ function sidebarCookbook(): SidebarGroup {
233
246
234
247
function sidebarApi ( ) : SidebarGroup {
235
248
return {
236
- collapsible : false ,
237
249
text : 'API' ,
238
250
items : [
239
251
{
0 commit comments