You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vitepress/docs/.vitepress/theme/index.ts

11 lines
292 B

import DefaultTheme from 'vitepress/theme'
import type { EnhanceAppContext } from 'vitepress'
import { GroupIconComponent } from 'vitepress-plugin-group-icons/client'
export default {
extends: DefaultTheme,
enhanceApp({ app }: EnhanceAppContext) {
app.use(GroupIconComponent)
},
}