diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 2100912d..131ffe8f 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -30,7 +30,7 @@ const SocialLinks = [ // https://vitepress.dev/reference/site-config export default extendConfig(withMermaid(defineConfig({ title: 'Vite DevTools', - description: 'Visualize and analyze your Vite build process with powerful developer tools. Extensible architecture for building custom DevTools integrations.', + description: 'An extensible devtools framework for the Vite ecosystem. Build, compose, and integrate developer tools with a unified foundation.', head: [ ['link', { rel: 'icon', type: 'image/svg+xml', href: '/logo.svg' }], ], @@ -40,6 +40,12 @@ export default extendConfig(withMermaid(defineConfig({ // https://vitepress.dev/reference/default-theme-config nav: [ { text: 'Guide', link: '/guide/' }, + { + text: 'Builtin DevTools', + items: [ + { text: 'DevTools for Rolldown', link: '/rolldown/' }, + ], + }, { text: 'DevTools Kit', items: DevToolsKitNav, @@ -58,7 +64,13 @@ export default extendConfig(withMermaid(defineConfig({ text: 'Guide', items: [ { text: 'Getting Started', link: '/guide/' }, - { text: 'Features', link: '/guide/features/' }, + ], + }, + { + text: 'DevTools for Rolldown', + items: [ + { text: 'Introduction', link: '/rolldown/' }, + { text: 'Features', link: '/rolldown/features' }, ], }, { @@ -94,7 +106,7 @@ export default extendConfig(withMermaid(defineConfig({ title: 'Vite DevTools', items: [ { text: 'Guide', link: '/guide/' }, - { text: 'Features', link: '/guide/features' }, + { text: 'DevTools for Rolldown', link: '/rolldown/' }, { text: 'Release Notes', link: 'https://github.com/vitejs/devtools/releases' }, { text: 'Contributing', link: 'https://github.com/vitejs/devtools/blob/main/CONTRIBUTING.md' }, ], @@ -103,6 +115,12 @@ export default extendConfig(withMermaid(defineConfig({ title: 'DevTools Kit', items: DevToolsKitNav, }, + { + title: 'Builtin DevTools', + items: [ + { text: 'DevTools for Rolldown', link: '/rolldown/' }, + ], + }, ], social: SocialLinks, }, diff --git a/docs/.vitepress/theme/Home.vue b/docs/.vitepress/theme/Home.vue index f06d1c90..9f8a4dd8 100644 --- a/docs/.vitepress/theme/Home.vue +++ b/docs/.vitepress/theme/Home.vue @@ -11,7 +11,7 @@ import Spacer from '@components/shared/Spacer.vue' @@ -19,8 +19,8 @@ import Spacer from '@components/shared/Spacer.vue'