import { defineConfig } from 'vitepress'; export const customIcons = { share: { svg: '' } } export default defineConfig({ title: "OpenMCP", description: "为开发者和科研人员准备的MCP开发环境和SDK", head: [ ['link', { rel: 'icon', href: '/images/favicon.png' }] ], themeConfig: { // https://vitepress.dev/reference/default-theme-config nav: [ { text: '首页', link: '/' }, { text: '教程', link: '/plugin-tutorial' }, { text: 'SDK', link: '/sdk-tutorial' }, { text: 'Prewiew 0.1.0', items: [ { component: 'KNavItem', props: { title: '更新日志', description: '查看项目的更新历史记录', icon: '/images/icons/monitor.svg', link: '/preview/changelog' } }, { component: 'KNavItem', props: { title: '参与 OpenMCP', description: '了解如何参与 OpenMCP 项目的开发和维护', icon: '/images/icons/group.svg', link: '/preview/join' } }, { component: 'KNavItem', props: { title: '资源频道', description: '获取项目相关的资源和信息', icon: '/images/icons/ai.svg', link: '/preview/channel' } } ] }, ], socialLinks: [ { icon: 'github', link: 'https://github.com/LSTM-Kirigaya/openmcp-client' }, { icon: customIcons.share, link: 'https://kirigaya.cn/home' }, ], footer: { message: '缩短LLM到Agent的最后一公里', copyright: 'OpenMCP All rights reserved' }, // 左上角的 logo logo: '/images/openmcp.png', } })