mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
12 lines
247 B
JavaScript
12 lines
247 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: "/ocelot.social/",
|
|
...meta,
|
|
theme,
|
|
plugins,
|
|
})
|