83 lines
2.3 KiB
TypeScript
83 lines
2.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: '/Installing/intro-install' }
|
|
],
|
|
|
|
sidebar: [
|
|
{
|
|
text: 'Installation',
|
|
items: [
|
|
{ text: 'Introduction', link: '/Installing/intro-install' },
|
|
{ text: 'Entering RCM', link: '/Installing/entering-rcm' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Developing for Jibo',
|
|
items: [
|
|
{ text: 'For Developers..', link: '/Developing/intro-dev' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Discoveries',
|
|
items: [
|
|
{ text: 'Jibo Workshop HRI 2024', link: '/Discoveries/jibohri' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Be Skill',
|
|
items: [
|
|
{ text: 'About @Be/Be', link: '/be/about' },
|
|
{ text: 'The Splash Screen', link: '/be/splash' },
|
|
{ text: 'The Assets Directory', link: '/be/Assets/assets' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Dictionary',
|
|
items: [
|
|
{ text: 'ESML', link: '/Dictionary/ESML' },
|
|
{ text: 'NVIDIA Tegra K1 (T124) Soc', link: '/Dictionary/tegrasoc' },
|
|
{ text: 'Robot Operating System', link: '/Dictionary/ROS' },
|
|
{ text: 'ShofEL2 - Fusée Gelée Exploit', link: '/Dictionary/Shofel' }
|
|
]
|
|
},
|
|
{
|
|
text: 'UART',
|
|
items: [
|
|
{ text: 'Validated memory adresses', link: '/uart/vectors/validatedmem' },
|
|
{ text: 'Hardware and Tegra Exploitation', link: '/uart/vectors/hardexp' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Other',
|
|
items: [
|
|
{ text: 'Connecting to WiFi', link: '/connect-to-wifi' },
|
|
{ text: 'FAQ', link: '/faq' }
|
|
]
|
|
}
|
|
],
|
|
|
|
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']
|
|
}
|
|
}
|
|
}) |