mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-26 11:38:15 +08:00
12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
import { defineClientConfig } from 'vuepress/client'
|
|
import type { ClientConfig } from 'vuepress/client'
|
|
import { setupCopyCode } from './setupCopyCode.js'
|
|
|
|
import './styles/button.css'
|
|
|
|
export default defineClientConfig({
|
|
setup() {
|
|
setupCopyCode()
|
|
},
|
|
}) as ClientConfig
|