hpg/content/.vitepress/theme/index.js

12 lines
292 B
JavaScript
Raw Permalink Normal View History

2025-01-05 13:24:18 +00:00
import DefaultTheme from 'vitepress/theme-without-fonts';
2025-01-18 08:48:02 +00:00
import DownloadLink from './DownloadLink.vue';
2024-08-01 20:19:10 +00:00
import './custom.css';
2024-09-03 19:36:01 +00:00
/** @type {import('vitepress').Theme} */
export default {
extends: DefaultTheme,
2025-01-18 08:48:02 +00:00
enhanceApp({ app }) {
app.component('DownloadLink', DownloadLink);
}
2024-09-03 19:36:01 +00:00
};