1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- const config = {
- title: '简约而不简单的文档',
- themeConfig: {
- repo: 'https://github.com/xiaoxian521',
- docsDir: 'docs',
- locales: {
- '/': {
- lang: 'zh-CN',
- nav: [
- { text: '书写规范', link: '/zh/standard/' },
- { text: '插件分享', link: '/zh/plugs/' },
- ],
- sidebar: [
- {
- text: '简介',
- children: [
- { text: '项目描述', link: '/zh/introduction/description' },
- { text: '开源精神', link: '/zh/introduction/openSource' },
- { text: '贡献者', link: '/zh/introduction/contributor' },
- { text: '设计图及UI规范', link: '/zh/introduction/ui' },
- ],
- },
- ],
- },
- '/en/': {
- lang: 'en-US',
- nav: [
- { text: 'Standard', link: '/en/standard/' },
- { text: 'PlugsShare', link: '/zh/plugs/' },
- ],
- sidebar: [
- {
- text: 'introduction',
- children: [
- { text: 'description', link: '/en/introduction/description' },
- { text: 'openSource', link: '/en/introduction/openSource' },
- { text: 'contributor', link: '/en/introduction/contributor' },
- { text: 'DesignDrawing、UISpecification', link: '/en/introduction/ui' },
- ],
- },
- ],
- },
- }
- }
- }
- module.exports = config
|