IT4C.dev/docs/.vuepress/config.js
2023-02-07 21:46:31 +01:00

70 lines
1.9 KiB
JavaScript

const path = require('path')
module.exports = {
title: 'IT Team for Change',
description: 'IT4C.dev introduces the IT Team for Change, applied Philosophy and Projects.',
head: [
['meta', {name: 'viewport', content: 'width=device-width,initial-scale=1'}]
],
theme: 'vuepress-theme-book',
themeConfig: {
// logo: "/logo.png",
searchPlaceholder: "Search...",
lastUpdated: "Last Updated",
docsRepo: "https://github.com/IT4Change/IT4C.dev/",
docsDir: "docs",
editLinks: true,
editLinkText: 'Edit this page on Github',
nav: [
{ text: 'IT4C', link: '/' },
{ text: 'Contact', link: '/contact' },
{
text: 'Github',
link:
'https://github.com/IT4Change'
},
],
sidebar: {
'/': [
{
title: '',
collapsable: false,
sidebarDepth: 0,
children: [
['/', 'IT4C'],
['/history', 'History'],
['/contact', 'Contact']
]
},
{
title: 'Projects',
collapsable: false,
children: [
['/projects/gradido', 'Gradido'],
//['/extras/contributing', 'Contributing ✨'],
//['/extras/license', 'License 📚']
]
},
{
title: 'People',
collapsable: false,
children: [
['/people/alexander-friedland', 'Alexander Friedland'],
['/people/ulf-gebhardt', 'Ulf Gebhardt'],
['/people/wolfgang-huss', 'Wolfgang Huß'],
// ['/random/website', 'Websites using this theme 👌'],
// ['/random/emoji', 'Emoji 😃'],
// ['/random/lorem', 'Lorem Ipsum 🌟']
]
},
]
},
},
configureWebpack: {
resolve: {
alias: {
'@images': path.resolve(__dirname, '../images')
}
}
},
}