25 lines
636 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: '/ocelot.social/',
locales:{
// The key is the path for the locale to be nested under.
// As a special case, the default locale can use '/' as its path.
'/en/': {
lang: 'en-US', // this will be set as the lang attribute on <html>
title: 'Ocelot.Social',
// description: ''
},
'/': {
lang: 'de-DE',
title: 'Ocelot.Social',
// description: ''
}
}
})