You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tanghe-report/doc/docs/.vuepress/config.js

89 lines
3.3 KiB
JavaScript

3 years ago
module.exports = {
3 years ago
base: '/report-doc/',
title: 'AJ-Report',
3 years ago
description: '使用拖拽快速生成动态大屏报表',
dest: 'dist',
lastUpdated: 'Last Updated',
theme: '',
themeConfig: {
logo: '/logo.png',
smoothScroll: true,
sidebarDepth: 2,
nav: [
{text: '首页', link: '/'},
3 years ago
{text: '指南', link: '/guide/'},
3 years ago
{text: 'GitHub', link: 'https://github.com/anji-plus/report'},
{text: 'Gitee', link: 'https://gitee.com/anji-plus/report'},
3 years ago
{text: '谁在使用', link: '/guide/briefUsing'},
3 years ago
{text: '更多案例', link: '/guide/bigScreenCase'},
3 years ago
],
sidebar: {
'/guide/': [
{
3 years ago
title: '介绍',
3 years ago
collapsable: false,
children: [
3 years ago
{title: '简介', path: '/guide/'},
{title: '谁在使用', path: '/guide/briefUsing'},
{title: '技术支持', path: '/guide/briefSupport'},
]
},
{
title: '快速入门',
collapsable: false,
children: [
{title: '开发环境', path: '/guide/quicklyDevelop'},
{title: '发行版部署', path: '/guide/quicklyDistribution'},
{title: '源码部署', path: '/guide/quicklySource'},
{title: '前后端分离', path: '/guide/quicklySeparate'},
3 years ago
]
},
{
title: '用户权限',
collapsable: false,
children: [
{title: '权限管理', path: '/guide/authmanager'},
]
},
3 years ago
{
3 years ago
title: '操作手册',
3 years ago
collapsable: false,
children: [
3 years ago
{title: '数据源', path: '/guide/datasource'},
{title: '数据集', path: '/guide/dataset'},
3 years ago
{title: '报表管理', path: '/guide/reportmanager'},
{title: '大屏报表', path: '/guide/dashboard'},
{title: '表格报表', path: '/guide/execl'},
{title: '导入导出', path: '/guide/importexport'},
3 years ago
]
3 years ago
},
3 years ago
{
3 years ago
title: '其他',
3 years ago
collapsable: false,
children: [
3 years ago
{title: '常见问题', path: '/guide/question'}
3 years ago
]
},
{
title: '社区提供',
collapsable: false,
children: [
3 years ago
{title: '说明', path: '/guide/community/report'},
3 years ago
{title: '搭建AJ-Report开发环境', path: '/guide/community/AC1688/搭建aj-report开发环境'}
]
}
3 years ago
],
3 years ago
}
},
plugins: [
['@vuepress/back-to-top', true],
],
configureWebpack: {
resolve: {
alias: {
'@': '/.vuepress/public'
}
3 years ago
}
}
3 years ago
}