@@ -9,6 +9,18 @@ export default defineUserConfig<DefaultThemeOptions>({
9
9
lang : 'en-US' ,
10
10
title : 'CoreUI for Vue.js' ,
11
11
description : 'UI Components Library for Vue.js (Vue 3)' ,
12
+ head : [
13
+ // ['link', { rel: 'icon', href: '/logo.png' }],
14
+ [ 'link' , { rel : 'manifest' , href : '/favicon/manifest.json' } ] ,
15
+ // ['meta', { name: 'theme-color', content: '#3eaf7c' }],
16
+ // ['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
17
+ // ['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black' }],
18
+ // ['link', { rel: 'apple-touch-icon', href: '/icons/apple-touch-icon-152x152.png' }],
19
+ // ['link', { rel: 'mask-icon', href: '/icons/safari-pinned-tab.svg', color: '#3eaf7c' }],
20
+ // ['meta', { name: 'msapplication-TileImage', content: '/icons/msapplication-icon-144x144.png' }],
21
+ // ['meta', { name: 'msapplication-TileColor', content: '#000000' }],
22
+ [ 'script' , { src : 'https://media.ethicalads.io/media/client/ethicalads.min.js' } ]
23
+ ] ,
12
24
extendsMarkdown : ( md ) => {
13
25
md . use ( require ( 'markdown-it-include' ) ) ,
14
26
md . renderer . rules . table_open = function ( tokens , idx ) {
@@ -221,6 +233,10 @@ export default defineUserConfig<DefaultThemeOptions>({
221
233
text : 'Progress' ,
222
234
link : `/${ pkg . config . version_short } /components/progress.md` ,
223
235
} ,
236
+ {
237
+ text : 'Sidebar' ,
238
+ link : `/${ pkg . config . version_short } /components/sidebar.md` ,
239
+ } ,
224
240
{
225
241
text : 'Spinner' ,
226
242
link : `/${ pkg . config . version_short } /components/spinner.md` ,
0 commit comments