| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | 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/briefUsing'},            {text: '更多案例', link: '/guide/bigScreenCase'},        ],        sidebar: {            '/guide/': [                {                    title: '介绍',                    collapsable: false,                    children: [                        {title: '简介', path: '/guide/'},                        {title: '谁在使用', path: '/guide/briefUsing'},                        {title: '技术支持', path: '/guide/briefSupport'},                        {title: '更多案例', path: '/guide/bigScreenCase'},                    ]                },                {                    title: '快速入门',                    collapsable: false,                    children: [                        {title: '开发环境', path: '/guide/quicklyDevelop'},                        {title: '发行版部署', path: '/guide/quicklyDistribution'},                        {title: '源码部署', path: '/guide/quicklySource'},                        {title: '前后端分离', path: '/guide/quicklySeparate'},                    ]                },                {                    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/charts'},                    ]                },                {                    title: '其他',                    collapsable: false,                    children: [                        {title: '常见问题', path: '/guide/question'}                    ]                },                {                    title: '社区提供',                    collapsable: false,                    children: [                        {title: '说明', path: '/guide/community/report'},                        {title: '搭建AJ-Report开发环境', path: '/guide/community/AC1688/搭建aj-report开发环境'}                    ]                }            ],        }    },    plugins: [        ['@vuepress/back-to-top', true],    ],    configureWebpack: {        resolve: {            alias: {                '@': '/.vuepress/public'            }        }    }}
 |