mirror of
https://github.com/RainCraft-Server/raincraft-server.github.io.git
synced 2025-12-16 21:27:43 +00:00
55 lines
1.2 KiB
TypeScript
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,
|
|
},
|
|
},
|
|
})
|