Skip to content

Commit

Permalink
Create config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt committed Aug 8, 2024
1 parent 0b7104c commit 7646429
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions docs/docs/.vuepress/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import { defaultTheme } from '@vuepress/theme-default'
import { defineUserConfig } from 'vuepress/cli'
import { viteBundler } from '@vuepress/bundler-vite'

export default defineUserConfig({
lang: 'en-US',

title: 'Camelot',
description: 'Documentation for the Camelot Discord bot',
base: '/camelot/',

theme: defaultTheme({
logo: 'images/hero.png',
sidebar: [
{
text: 'Setting up Camelot',
link: '/get-started'
},
{
text: 'Modules',
link: '/modules/',
collapsible: false,
children: [
{
text: 'Moderation',
link: '/modules/moderation'
}
]
}
],
navbar: ['/', {
text: 'Setting up Camelot',
link: '/get-started',
}, {
text: 'Modules',
link: '/modules/'
}],
docsDir: 'docs'
}),

bundler: viteBundler(),

})

0 comments on commit 7646429

Please sign in to comment.