13 lines
375 B
Handlebars
13 lines
375 B
Handlebars
import { defineClientConfig } from 'vuepress/client'
|
|
import RepoCard from 'vuepress-theme-plume/features/RepoCard.vue'
|
|
import CustomComponent from './theme/components/Custom.vue'
|
|
|
|
import './theme/styles/custom.css'
|
|
|
|
export default defineClientConfig({
|
|
enhance({ app }) {
|
|
app.component('RepoCard', RepoCard)
|
|
app.component('CustomComponent', CustomComponent)
|
|
},
|
|
})
|