This commit is contained in:
2024-09-03 21:36:01 +02:00
parent 7bc7b75fce
commit a6252a310d
5 changed files with 211 additions and 2 deletions

View File

@ -1,5 +1,6 @@
import { fileURLToPath } from 'url';
import { defineConfig } from 'vitepress';
import footnote from 'markdown-it-footnote'
import footnote from 'markdown-it-footnote';
export default defineConfig({
title: 'HPG Romein',
@ -59,4 +60,14 @@ export default defineConfig({
md.use(footnote);
},
},
vite: {
resolve: {
alias: [
{ find: /^.*\/VPDocFooter\.vue$/,
replacement: fileURLToPath(new URL('./theme/VPDocFooter.vue', import.meta.url)),
},
],
},
},
});