raincraft-server-homepage/docs/.vuepress/plume.config.ts
ギリ猫 a1a2b081f8 发布和微调页面
1、发布制度:raincraft-zd-20241201-01
2、微调首页。
2024-12-01 18:31:13 +08:00

55 lines
1.2 KiB
TypeScript

import { defineThemeConfig } from 'vuepress-theme-plume'
import { enNavbar, zhNavbar } from './navbar'
import { enNotes, zhNotes } from './notes'
/**
* @see https://theme-plume.vuejs.press/config/basic/
*/
export default defineThemeConfig({
logo: '/images/raincraft-1x1-circle.png',
// your git repo url
docsRepo: '',
docsDir: 'docs',
appearance: true,
social: [
{ icon: 'github', link: 'https://github.com/RainCraft-Server' },
{ icon: 'bilibili', link: 'https://space.bilibili.com/3546384733047458' },
],
navbarSocialInclude: ['github', 'bilibili'],
footer: {
copyright: 'Made with ❤ by GiriNeko',
},
locales: {
'/': {
profile: {
avatar: '/images/raincraft-1x1.jpeg',
name: 'RainCraft',
description: '又是一个纯净生存养老服',
circle: true,
// location: '',
// organization: '',
},
navbar: zhNavbar,
notes: zhNotes,
},
'/en/': {
profile: {
avatar: '/images/raincraft-1x1.jpeg',
name: 'RainCraft',
description: 'An Minecraft Server.',
circle: true,
// location: '',
// organization: '',
},
navbar: enNavbar,
notes: enNotes,
},
},
})