1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
| import { defineConfig, type DefaultTheme } from 'vitepress'
export default defineConfig({ head: [['link', { rel: 'icon', href: '/favicon.svg' }]], title: "Xdogの文档站", description: "结束即是开始", outDir: 'public', markdown: { image: { lazyLoading: true } }, ignoreDeadLinks: true, themeConfig: { nav: [ { text: '主页', link: '/' }, { text: 'Butterfly美化', link: '/butterfly/' }, { text: '作者博客', link: 'https://xdog.top/' } ], search: { provider: 'local', options: { translations: { button: { buttonText: '搜索文档', buttonAriaLabel: '搜索文档' }, modal: { noResultsText: '无法找到相关结果', resetButtonTitle: '清除查询条件', footer: { selectText: '选择', navigateText: '切换', closeText: '关闭', } } } } }, docFooter: { prev: '上一页', next: '下一页' }, outline: { label: '目录' }, lastUpdated: { text: '最后更新于', formatOptions: { dateStyle: 'short', timeStyle: 'medium' } }, returnToTopLabel: '回到顶部', sidebarMenuLabel: '菜单', darkModeSwitchLabel: '主题', lightModeSwitchTitle: '切换到浅色模式', darkModeSwitchTitle: '切换到深色模式', footer: { message: '<img style="display:inline-block;position:relative;height:16px;top:3px;padding-right:3px;" src="https://vitepress.dev/vitepress-logo-mini.svg" alt="ICP" data-ll-status="loading" class="entered loading"><a style="text-decoration-line: none;" href="https://vitepress.dev/zh/">VitePress</a> | <img style="display:inline-block;position:relative;top:3px;padding-right:3px;" src="https://www.upyun.com/static/favicon-16x16.png" alt="ICP" data-ll-status="loading" class="entered loading"><a style="text-decoration-line: none;" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">又拍云</a>', copyright: 'Copyright © 2023 Xdog' },
sidebar: { '/butterfly/': { base: '/butterfly/', items: sidebarButterfly() }, },
socialLinks: [ { icon: 'github', link: 'https://github.com/vuejs/vitepress' } ] } })
function sidebarButterfly(): DefaultTheme.SidebarItem[] { return [ { text: '简介', collapsed: false, items: [ { text: '介绍', link: 'index' }, { text: '准备', link: 'prepare' } ] }, { text: '盒子调整', collapsed: false, items: [ { text: '整体布局', link: '盒子调整-整体布局' }, { text: '导航栏', link: '盒子调整-导航栏' }, { text: '首页', link: '盒子调整-首页' }, { text: '分类和标签页', link: '盒子调整-分类和标签页' }, { text: '关于页', link: '盒子调整-关于页' }, { text: '底部快捷导航', link: '盒子调整-底部快捷导航' } ] }, { text: '功能拓展', collapsed: false, items: [ { text: '侧边栏小工具', link: '功能拓展-侧边栏小工具' }, { text: '首页动态分类条', link: '功能拓展-首页动态分类条' }, { text: '最新文章标识', link: '功能拓展-最新文章标识' }, { text: 'Volantis标签移植', link: '功能拓展-Volantis标签移植' }, { text: '51la统计&灵雀统计', link: '功能拓展-51la统计&灵雀统计' }, { text: '图标', link: '功能拓展-图标' }, { text: '杂项', link: '功能拓展-杂项' } ] }, { text: '美化特效', collapsed: false, items: [ { text: '背景', link: '美化特效-背景' }, { text: '加载动画', link: '美化特效-加载动画' }, { text: '文章页', link: '美化特效-文章页' }, { text: '彩色标签', link: '美化特效-彩色标签' }, { text: '页脚', link: '美化特效-页脚' }, { text: '杂项', link: '美化特效-杂项' } ] }, ] }
|