config.js
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module.exports = {
base: '/monitor/',
title: 'A-View-5',
description: '监控A-View-5说明',
dest: 'dist',
lastUpdated: 'Last Updated',
theme: '',
themeConfig: {
logo: '/logo.png',
smoothScroll: true,
sidebarDepth: 2,
nav: [
{text: '首页', link: '/'},
{text: '5.2.0', link: '/version520/'},
{text: '设计器', link: 'http://192.168.0.75:6677/#/login'},
{text: '报表设计', link: 'http://192.168.0.75:8086/'}
],
sidebar: {
'/version520/': [
{
title: '版本升级',
collapsable: false,
children: [
{title: '版本说明', path: '/version520/'},
{title: '发布', path: '/version520/20220617'},
]
}
]
}
},
plugins: [
['@vuepress/back-to-top', true],
],
configureWebpack: {
resolve: {
alias: {
'@': '/.vuepress/public'
}
}
}
}