mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-18 07:36:36 +00:00
Initalize
This commit is contained in:
41
.vitepress/config.mts
Normal file
41
.vitepress/config.mts
Normal file
@@ -0,0 +1,41 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
// https://vitepress.dev/reference/site-config
|
||||
export default defineConfig({
|
||||
srcDir: "docs",
|
||||
|
||||
title: "Jibo Hacks Guide",
|
||||
description: "Learn how to mod your Jibo!",
|
||||
themeConfig: {
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
nav: [
|
||||
{ text: 'Home', link: '/' },
|
||||
{ text: 'Installation', link: '/intro-install' }
|
||||
],
|
||||
|
||||
sidebar: [
|
||||
{
|
||||
text: 'Installation',
|
||||
items: [
|
||||
{ text: 'Introduction', link: '/intro-install' },
|
||||
{ text: 'Entering RCM', link: '/entering-rcm' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Developing for Jibo',
|
||||
items: [
|
||||
{ text: 'For Developers..', link: '/intro-dev' }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'gitea', link: 'https://kevinblog.sytes.net/Code/Jibo-Revival-Group/' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: 'Not related to Jibo Inc. in any way.',
|
||||
copyright: 'Copyright © 2026-present Jibo Revival Group'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user