summaryrefslogtreecommitdiffstats
path: root/documentation/.vuepress/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/.vuepress/config.js')
-rw-r--r--documentation/.vuepress/config.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/documentation/.vuepress/config.js b/documentation/.vuepress/config.js
new file mode 100644
index 0000000..0a8f1b3
--- /dev/null
+++ b/documentation/.vuepress/config.js
@@ -0,0 +1,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
+ },
+} \ No newline at end of file