import { defineConfig } from 'vitepress' export default defineConfig({ title: 'Vue Devtools', description: 'Browser devtools extension for debugging Vue.js applications', head: [ ['link', { rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }], ['link', { rel: 'icon', type: 'image/png', href: '/favicon.png' }], ], themeConfig: { repo: 'vuejs/devtools', logo: '/logo-header.svg', docsDir: 'packages/docs/src', docsBranch: 'main', editLinks: true, editLinkText: 'Suggest changes to this page', algolia: { appId: 'CFRGFZ1IGJ', apiKey: 'cf7b3ddb7b310746c27c1a71ff7d4fe2', indexName: 'devtools-vuejs', }, nav: [ { text: 'Guide', link: '/guide/installation' }, { text: 'Plugins', items: [ { text: 'Plugin development guide', link: '/plugin/plugins-guide' }, { text: 'API Reference', link: '/plugin/api-reference' }, ], }, { text: '💚️ Sponsor', link: 'https://github.com/sponsors/Akryum', }, ], sidebar: { '/guide/': [ { text: 'Guide', children: [ { text: 'Installation', link: '/guide/installation', }, { text: 'Open in editor', link: '/guide/open-in-editor', }, { text: 'F.A.Q.', link: '/guide/faq', }, { text: 'Contributing', link: '/guide/contributing', }, { text: 'Devtools performance', link: '/guide/devtools-perf', }, ], }, ], }, }, })