Initial commit
This commit is contained in:
32
content/.vitepress/config.js
Normal file
32
content/.vitepress/config.js
Normal file
@ -0,0 +1,32 @@
|
||||
import { defineConfig } from 'vitepress';
|
||||
import footnote from 'markdown-it-footnote'
|
||||
|
||||
export default defineConfig({
|
||||
title: 'HPG Romein',
|
||||
// description: 'A VitePress Site',
|
||||
|
||||
themeConfig: {
|
||||
sidebar: [
|
||||
{ text: 'Introductie',
|
||||
collapsed: false,
|
||||
items: [
|
||||
{ text: 'Startreflectie', link: '/intro/startreflectie' },
|
||||
],
|
||||
},
|
||||
{ text: 'Inhoud project',
|
||||
collapsed: false,
|
||||
items: [
|
||||
{ text: '1. Betonplaat', link: '/inhoud/betonplaat' },
|
||||
{ text: '2. Boek', link: '/inhoud/boek' },
|
||||
{ text: '3a. Top-30 tips', link: '/inhoud/top30' },
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
markdown: {
|
||||
config: md => {
|
||||
md.use(footnote);
|
||||
},
|
||||
},
|
||||
});
|
Reference in New Issue
Block a user