@@ -15,7 +15,7 @@ export default defineConfig({
1515 'edit-on-github' : 'Edit on GitHub' ,
1616 'copy-code' : 'Copy code' ,
1717 'copy-success' : 'Copy success' ,
18- 'copy-error' : 'Copy error'
18+ 'copy-error' : 'Copy error' ,
1919 } ,
2020 zh : {
2121 'view-source' : '查看源代码' ,
@@ -24,48 +24,48 @@ export default defineConfig({
2424 'edit-on-github' : '在 Github 中编辑' ,
2525 'copy-code' : '复制代码' ,
2626 'copy-success' : '复制成功' ,
27- 'copy-error' : '复制失败'
28- }
27+ 'copy-error' : '复制失败' ,
28+ } ,
2929 } ,
3030
3131 // https://vitepress.dev/reference/default-theme-config
3232 nav : [
3333 { text : 'Home' , link : '/' } ,
34- { text : 'Guide' , link : '/guide/quick-start' }
34+ { text : 'Guide' , link : '/guide/basic/ quick-start' } ,
3535 ] ,
3636
3737 sidebar : [
3838 {
3939 text : 'Basic' ,
4040 items : [
41- { text : 'Quick Start' , link : '/guide/quick-start' } ,
42- { text : 'Passed Props' , link : '/guide/passed-props' } ,
43- { text : 'Extending Styles' , link : '/guide/extending-styles' } ,
44- { text : 'Styling Any Component' , link : '/guide/styling-any-component' } ,
45- { text : 'Animations' , link : '/guide/animations' }
46- ]
41+ { text : 'Quick Start' , link : '/guide/basic/ quick-start' } ,
42+ { text : 'Passed Props' , link : '/guide/basic/ passed-props' } ,
43+ { text : 'Extending Styles' , link : '/guide/basic/ extending-styles' } ,
44+ { text : 'Styling Any Component' , link : '/guide/basic/ styling-any-component' } ,
45+ { text : 'Animations' , link : '/guide/basic/ animations' } ,
46+ ] ,
4747 } ,
4848 {
4949 text : 'Advances' ,
50- items : [ { text : 'Runtime API Examples ' , link : '/api-examples ' } ]
51- }
50+ items : [ { text : 'Theming ' , link : '/guide/advances/theming ' } ] ,
51+ } ,
5252 ] ,
5353
54- socialLinks : [ { icon : 'github' , link : 'https://github.com/vue-styled-components/vue3-styled-components' } ]
54+ socialLinks : [ { icon : 'github' , link : 'https://github.com/vue-styled-components/vue3-styled-components' } ] ,
5555 } ,
5656 markdown : {
5757 config : ( md ) => {
5858 md . use ( demoblockPlugin )
59- }
59+ } ,
6060 } ,
6161 vite : {
6262 resolve : {
6363 alias : {
64- '@' : new URL ( '../../package' , import . meta. url ) . pathname
64+ '@' : new URL ( '../../package' , import . meta. url ) . pathname ,
6565 } ,
66- extensions : [ '.mjs' , '.js' , '.ts' , '.jsx' , '.tsx' , '.json' , '.vue' , '.less' ]
66+ extensions : [ '.mjs' , '.js' , '.ts' , '.jsx' , '.tsx' , '.json' , '.vue' , '.less' ] ,
6767 } ,
68- plugins : [ demoblockVitePlugin ( ) ]
68+ plugins : [ demoblockVitePlugin ( ) ] ,
6969 } ,
70- vue : { }
70+ vue : { } ,
7171} )
0 commit comments