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: 'Networking', items: [ { text: 'Network Profiling & Traffic Analysis', link: '/Networking/network-pt' }, { text: 'Networking & ports & Error codes', link: '/Networking/ports' } ] }, { text: 'Documentation', items: [ { text: 'First Voice Interactions (before GTA 6)', link: '/documenting/voice' } ] }, { text: 'Jibo Tools & Mod Installer', items: [ { text: 'Index', link: '/jtools-minst/00 - Index' }, { text: 'Installer (How It Works)', link: '/jtools-minst/01 - Installer (How It Works)' }, { text: 'Mapping to guide', link: '/jtools-minst/02 - Mapping to guide' }, { text: 'CLI Arguments', link: '/jtools-minst/03 - CLI Arguments' }, { text: 'GUI (How It Works)', link: '/jtools-minst/04 - GUI (How It Works)' }, { text: 'Windows Support', link: '/jtools-minst/05 - Windows Support' }, { text: 'Updater (How It Works)', link: '/jtools-minst/06 - Updater (How It Works)' }, { text: 'Working Directory + State Files', link: '/jtools-minst/07 - Working Directory + State Files' }, { text: 'Troubleshooting', link: '/jtools-minst/08 - Troubleshooting' } ] }, { 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: 'AtDev Firewall', link: '/atdev' }, { 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'] } } })