Files
JiboViteDocs/.vitepress/config.mts

52 lines
1.3 KiB
TypeScript

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' }
]
},
{
text: 'Other',
items: [
{ text: 'Connecting to WiFi', link: '/connect-to-wifi' }
]
}
],
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'
}
},
vite: {
server: {
allowedHosts: ['jibohacks.zane.org', 'jibohacks1.zane.org', 'jibohacks2.zane.org', 'jibohacks3.zane.org', 'jibomods.zane.org']
}
}
})