mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
22 lines
401 B
JavaScript
22 lines
401 B
JavaScript
import { defineUserConfig } from 'vuepress'
|
|
import meta from './config/meta'
|
|
import theme from './config/theme'
|
|
import plugins from './config/plugins'
|
|
|
|
export default defineUserConfig({
|
|
...meta,
|
|
theme,
|
|
plugins,
|
|
base: process.env.VUEPRESS_BASE ?? '/',
|
|
locales: {
|
|
'/': {
|
|
lang: 'de-DE',
|
|
},
|
|
'/en/': {
|
|
lang: 'en-EN',
|
|
},
|
|
'/fr/': {
|
|
lang: 'fr-FR',
|
|
},
|
|
}
|
|
}) |