import { defineConfig } from 'vitepress' // https://vitepress.dev/reference/site-config export default defineConfig({ title: "Springboot-note", description: "springboot 开发教程", themeConfig: { // https://vitepress.dev/reference/default-theme-config nav: [ // { text: 'Home', link: '/' }, { text: '文档', link: '/base/quick_start' } ], sidebar: [ { text: 'Springboot', items: [ { text: 'Markdown Examples', link: '/markdown-examples' }, { text: 'Runtime API Examples', link: '/api-examples' } ] } ], socialLinks: [ // { icon: 'github', link: 'https://github.com/vuejs/vitepress' } ] } })