@@ -3,7 +3,7 @@ import { defineConfig } from 'vitepress'
33
44// https://vitepress.dev/reference/site-config
55export default defineConfig ( {
6- title : '@orbisk/vue-use-media-recorder ' ,
6+ title : 'Vue Use Media Recorder ' ,
77 description : 'A Vue Composable for MediaRecorder API' ,
88 vite : {
99 resolve : {
@@ -19,20 +19,28 @@ export default defineConfig({
1919 // https://vitepress.dev/reference/default-theme-config
2020 nav : [
2121 { text : 'Home' , link : '/' } ,
22- { text : 'Examples' , link : '/api-examples' } ,
22+ { text : 'Installation' , link : '/installation' } ,
23+ { text : 'Usage' , link : '/usage' } ,
24+ { text : 'Examples' , link : '/examples' } ,
2325 ] ,
2426
2527 sidebar : [
28+ {
29+ text : 'Installation' ,
30+ link : '/installation' ,
31+ } ,
32+ {
33+ text : 'Usage' ,
34+ link : '/usage' ,
35+ } ,
2636 {
2737 text : 'Examples' ,
28- items : [
29- { text : 'Runtime API Examples' , link : '/api-examples' } ,
30- ] ,
38+ link : '/examples' ,
3139 } ,
3240 ] ,
3341
3442 socialLinks : [
35- { icon : 'github' , link : 'https://github.com/vuejs/vitepress ' } ,
43+ { icon : 'github' , link : 'https://github.com/OrbisK/vue-use-media-recorder ' } ,
3644 ] ,
3745 } ,
3846} )
0 commit comments