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
| module.exports = { locales: { '/': { lang: 'zh-CN', title: 'Cellink 用户手册', description: '一款可视化代码流程管理框架', }, }, title: 'Cellink', base: '/cellink-docs/', head: [ ['link', { rel: 'icon', href: '/imgs/icon.png' }], ['meta', { name: 'keywords', content: 'cellink,可视化,流程管理,cellink文档,用户文档'}] ], themeConfig: { locales: { '/': { selectText: 'Languages', label: '🇨🇳 简体中文', editLinkText: '帮助我们完善文档', lastUpdated: '文档更新于', serviceWorker: { updatePopup: { message: '发现新内容可用.', buttonText: '刷新', }, }, nav: [ { text: '开始使用', link: '/start/' }, { text: '配置指南', link: '/guide/' }, { text: '进阶用法', link: '/advance/' }, { text: 'Cellink 实践', link: '/practice/' }, { text: 'GitHub', link: 'https: ], }, }, sidebar: 'auto', docsRepo: 'zywvvd/cellink-docs', docsDir: 'docs', docsBranch: 'source', editLinks: true, } };
|