mirror of
https://github.com/RainCraft-Server/raincraft-server.github.io.git
synced 2025-12-17 05:37:42 +00:00
first commit
This commit is contained in:
commit
fa65e2e9dc
32 changed files with 6059 additions and 0 deletions
55
docs/.vuepress/plume.config.ts
Normal file
55
docs/.vuepress/plume.config.ts
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
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.png',
|
||||
name: 'RainCraft',
|
||||
description: 'An Minecraft Server.',
|
||||
circle: true,
|
||||
// location: '',
|
||||
// organization: '',
|
||||
},
|
||||
|
||||
navbar: zhNavbar,
|
||||
notes: zhNotes,
|
||||
},
|
||||
'/en/': {
|
||||
profile: {
|
||||
avatar: '/images/raincraft-1x1.png',
|
||||
name: 'RainCraft',
|
||||
description: 'An Minecraft Server.',
|
||||
circle: true,
|
||||
// location: '',
|
||||
// organization: '',
|
||||
},
|
||||
|
||||
navbar: enNavbar,
|
||||
notes: enNotes,
|
||||
},
|
||||
},
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue