import { defineConfig } from "vitepress"; export default defineConfig({ title: "DIUN Webhook Dashboard", description: "A dashboard for DIUN Docker image update notifications", themeConfig: { nav: [ { text: "Guide", link: "/guide/" }, { text: "Gitea", link: "https://gitea.jeanlucmakiola.de/makiolaj/DiunDashboard" }, ], sidebar: [ { text: "Guide", items: [ { text: "Getting Started", link: "/guide/" }, ], }, { text: "Development", items: [ { text: "Contributing", link: "/contributing" }, ], }, ], }, });