summaryrefslogtreecommitdiffstats
path: root/documentation/.vuepress/config.js
blob: 0a8f1b3c9d275854ae4353984bb94cc01972b6ca (plain) (blame)
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
module.exports = {
    title: 'BAS Documentation',
    description: 'Boot Auswahl Server',
    themeConfig: {
        logo: '/img/logo-light.svg',
        nav: [
            { text: 'Home', link: '/' },
            { text: 'Installation', link: '/installation/' },
            { text: 'API', link: '/api/' },
            { text: 'Webapp', link: '/webapp/' }
        ],
        sidebar: {
            '/installation/': [
                ''
            ],
            '/api/': [
                '',
                'collections'
            ],
            '/webapp/': [
                '',
                'modules'
            ]
        },
        sidebarDepth: 1
    },
}