mirror of
https://github.com/RainCraft-Server/raincraft-server.github.io.git
synced 2025-12-15 12:47:44 +00:00
17 lines
553 B
TypeScript
17 lines
553 B
TypeScript
import { defineClientConfig } from 'vuepress/client'
|
|
import staff from './theme/components/staff.vue'
|
|
import info from './theme/components/info.vue'
|
|
// 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)
|
|
app.component('staff', staff)
|
|
app.component('info', info)
|
|
},
|
|
|
|
})
|