mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
import { defineUserConfig } from 'vuepress'
|
|
import meta from './config/meta'
|
|
import theme from './config/theme'
|
|
import plugins from './config/plugins'
|
|
|
|
export default defineUserConfig({
|
|
base: "/IT4C.dev/",
|
|
...meta,
|
|
theme,
|
|
plugins,
|
|
})
|