Skip to content

Commit

Permalink
chore: add vue press config
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Jan 2, 2022
1 parent 444b7ee commit de5f919
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/**
* @typedef {import('@vuepress/theme-default').NavbarConfig} NavbarConfig
*/

/**
* @type NavbarConfig
*/
module.exports = {
// site config
lang: 'en-US',
title: 'discue',
description: 'Documentation of discue.io: Your secure and reliable messaging and queueing service.',
markdown: { extractHeaders: { level: [2, 3, 4] } },
// theme and its config
theme: '@vuepress/theme-default',
themeConfig: {
logo: 'https://avatars.githubusercontent.com/u/95524644?s=200&v=4',
docsDir: 'docs',
repo: 'discue/discue-io-docs',
repoLabel: 'GitHub',
sidebarDepth: 4,
navbar: [{
text: 'Getting Started',
link: '/overview/',
}, {
text: 'API Overview',
link: '/overview/',
}, {
text: 'API Reference',
link: '/endpoints/',
}],
},
}

0 comments on commit de5f919

Please sign in to comment.