Download links

This commit is contained in:
2025-01-18 09:48:02 +01:00
parent 54639f8d3b
commit 09f5c58829
13 changed files with 56 additions and 35 deletions

View File

@ -1,7 +1,11 @@
import DefaultTheme from 'vitepress/theme-without-fonts';
import DownloadLink from './DownloadLink.vue';
import './custom.css';
/** @type {import('vitepress').Theme} */
export default {
extends: DefaultTheme,
enhanceApp({ app }) {
app.component('DownloadLink', DownloadLink);
}
};