You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Vite & Vue powered static site generator.',
68
+
69
+
// theme level config options
70
+
themeConfig: {
71
+
sidebar: [
72
+
...posts.map((post) => ({
73
+
text: post.name,
74
+
link: `/posts/${post.name}`
75
+
}))
76
+
]
77
+
}
78
+
})
79
+
```
80
+
81
+
:::
82
+
27
83
### Config Intellisense
28
84
29
85
Using the `defineConfig` helper will provide TypeScript-powered intellisense for config options. Assuming your IDE supports it, this should work in both JavaScript and TypeScript.
0 commit comments