| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 | module.exports = {    base: '/report-doc/',    title: 'AJ-Report',    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'},            {text: '更多大屏', link: '/guide/bigScreenCase'},        ],        sidebar: {            '/guide/': [                {                    title: '介绍',                    collapsable: false,                    children: [                        {title: '简介', path: '/guide/'},                        {title: '技术支持', path: '/guide/briefSupport'},                        {title: '更多大屏', path: '/guide/bigScreenCase'},                    ]                },                {                    title: 'Releases',                    collapsable: false,                    children: [                        {title: 'V1.0.x', path: '/guide/releases/1.0.x'},                        {title: 'V1.1.x', path: '/guide/releases/1.1.x'},                        {title: 'V1.2.x', path: '/guide/releases/1.2.x'},                        {title: 'V1.3.x', path: '/guide/releases/1.3.x'},                        {title: 'V1.4.x', path: '/guide/releases/1.4.x'},                        {title: 'V1.5.x', path: '/guide/releases/1.5.x'},                        {title: 'V1.6.x', path: '/guide/releases/1.6.x'},                    ]                },                {                    title: '快速入门',                    collapsable: false,                    children: [                        {title: '开发环境', path: '/guide/quicklyDevelop'},                        {title: '发行版部署', path: '/guide/quicklyDistribution'},                        {title: '源码部署', path: '/guide/quicklySource'},                        {title: '前后端分离', path: '/guide/quicklySeparate'},                        {title: '快速使用', path: '/guide/quicklyUse'},                    ]                },                {                    title: '用户权限',                    collapsable: false,                    children: [                        {title: '权限管理', path: '/guide/authManager'},                    ]                },                {                    title: '操作手册',                    collapsable: false,                    children: [                        {title: '数据源', path: '/guide/datasource'},                        {title: '数据集', path: '/guide/dataset'},                        {title: '报表管理', path: '/guide/reportManager'},                        {title: '大屏报表', path: '/guide/dashboard'},                        {title: '表格报表', path: '/guide/excel'},                        {title: '导入导出', path: '/guide/importExport'},                        {title: '报表分享', path: '/guide/reportShare'},                        {title: '图表配置项', path: '/guide/chartsConfig'},                        {title: '图表组件', path: '/guide/charts'},                        {title: '图表联动', path: '/guide/chartsLinkage'},                    ]                },                {                    title: '其他',                    collapsable: false,                    children: [                        {title: '常见问题', path: '/guide/question'},                        {title: '常用知识', path: '/guide/knowledge'}                    ]                },                {                    title: '社区提供',                    collapsable: false,                    children: [                        {title: '说明', path: '/guide/community/report'},                        {title: '搭建AJ-Report开发环境', path: '/guide/community/AC1688/搭建aj-report开发环境'},                        {title: '大屏组件对齐和拖拽实现', path: '/guide/community/JiangHH/AJ_Report大屏设计时多组件对齐和拖拽移动实现'}                    ]                }            ],        }    },    plugins: [        ['@vuepress/back-to-top', true],    ],    configureWebpack: {        resolve: {            alias: {                '@': '/.vuepress/public'            }        }    }}
 |