mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-18 01:32:23 -06:00
41 lines
951 B
TypeScript
41 lines
951 B
TypeScript
import { defineConfig } from "vitepress";
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
export default defineConfig({
|
|
title: "Sky Follower Bridge",
|
|
description: "Official Documentation of Sky Follower Bridge",
|
|
themeConfig: {
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
logo: {
|
|
src: "/images/logo.png",
|
|
alt: "Sky Follower Bridge Logo",
|
|
},
|
|
nav: [
|
|
{ text: "Home", link: "/" },
|
|
{ text: "Getting Started", link: "/get-started" },
|
|
{ text: "Troubleshooting", link: "/troubleshooting" },
|
|
],
|
|
|
|
socialLinks: [
|
|
{
|
|
icon: "github",
|
|
link: "https://github.com/kawamataryo/sky-follower-bridge",
|
|
},
|
|
],
|
|
|
|
outline: {
|
|
level: "deep",
|
|
},
|
|
|
|
editLink: {
|
|
pattern:
|
|
"https://github.com/kawamataryo/sky-follower-bridge/edit/main/docs/:path",
|
|
text: "Edit this page on GitHub",
|
|
},
|
|
|
|
search: {
|
|
provider: "local",
|
|
},
|
|
},
|
|
});
|