config.js 1.1 KB
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'
            }
        }
    }
}