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: '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'] } } })