1+ import  {  defineConfig  }  from  'vitepress' ; 
2+ 
3+ export  default  defineConfig ( { 
4+     base : "/docs" , 
5+     title : 'Documentazione di CoderBot' , 
6+     description : 'Guida all\'uso di CoderBot' , 
7+     themeConfig : { 
8+         search : { 
9+             provider : 'local' 
10+         } , 
11+         outlineTitle : 'Su questa pagina' , 
12+         sidebar : [ 
13+         { 
14+             text : 'Kit di montaggio' , 
15+             items : [ 
16+             {  text : 'Istruzioni di montaggio' ,  link : '/kit/'  } , 
17+             {  text : 'Elenco delle parti' ,  link : '/description/'  } , 
18+             ] 
19+         } , 
20+         { 
21+             text : 'Manuale di configurazione' , 
22+             items : [ 
23+             {  text : 'Avvio' ,  link : '/manual/#messa-in-funzione'  } , 
24+             {  text : 'Ricarica della Batteria' ,  link : '/manual/#ricarica-della-batteria'  } , 
25+             {  text : 'Impostazioni' ,  link : '/manual/#impostazioni'  } , 
26+             {  text : 'Aggiornamento' ,  link : '/manual/#aggiornamento'  } , 
27+             {  text : 'Ripristino' ,  link : '/manual/#ripristino-impostazioni'  } , 
28+             ] 
29+         } , 
30+         { 
31+             text : 'Manuale d\'uso' , 
32+             items : [ 
33+             {  text : 'Programmazione' ,  link : '/usermanual/#programmazione'  } , 
34+             {  text : 'Attività' ,  link : '/usermanual/#attivita'  } , 
35+             {  text : 'Blocchi' ,  link : '/usermanual/blocks/'  } , 
36+             {  text : 'Programmi' ,  link : '/usermanual/programs/'  } , 
37+             ] 
38+         } , 
39+         { 
40+             text : 'Guide' , 
41+             items : [ 
42+             {  text : 'Muovere CoderBot' ,  link : '/guides/#muovere-coderbot'  } , 
43+             {  text : 'Programmiamo con i sensori' ,  link : '/guides/#programmiamo-con-i-sensori'  } , 
44+             ] 
45+         } , 
46+         ] 
47+     } , 
48+     head : [ 
49+         [ 'script' ,  { async : true ,  src : 'https://www.googletagmanager.com/gtag/js?id=G-JH5JX4PBZG' } ] , 
50+         [ 'script' ,  { } ,  "window.dataLayer = window.dataLayer || [];\nfunction gtag(){dataLayer.push(arguments);}\ngtag('js', new Date());\ngtag('config', 'G-JH5JX4PBZG');" ] 
51+     ] 
52+ } ) ; 
0 commit comments