1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- module.exports = {
- base: '/doc/',
- title: '大屏设计',
- description: '使用拖拽快速生成动态大屏报表',
- dest: 'dist',
- lastUpdated: 'Last Updated',
- theme: '',
- themeConfig: {
- logo: '/logo.png',
- smoothScroll: true,
- sidebarDepth: 2,
- nav: [
- {text: '首页', link: '/'},
- {text: '指南', link: '/guide/'},
- {text: 'GitHub', link: 'https://github.com/anji-plus/report'},
- {text: 'Gitee', link: 'https://gitee.com/anji-plus/report'},
- ],
- sidebar: {
- '/guide/': [
- {
- title: '文档',
- collapsable: false,
- children: [
- {title: '介绍', path: '/guide/'},
- {title: '快速入门', path: '/guide/quickly'},
- ]
- },
- {
- title: '操作手册',
- collapsable: false,
- children: [
- {title: '数据源', path: '/guide/datasource'},
- {title: '数据集', path: '/guide/dataset'},
- {title: '大屏设计', path: '/guide/dashboard'},
- ]
- },
- {
- title: '其他',
- collapsable: false,
- children: [
- {title: '常见问题', path: '/guide/question'}
- ]
- }],
- }
- },
- plugins: [
- ['@vuepress/back-to-top', true],
- ],
- configureWebpack: {
- resolve: {
- alias: {
- '@': '/.vuepress/public'
- }
- }
- }
- }
|