import { defineConfig } from "vitepress"; // https://vitepress.dev/reference/site-config export default defineConfig({ title: "Peas", description: "Profiles SNS", lang: "ja", themeConfig: { nav: [ { text: "Home", link: "/" }, { text: "Examples", link: "/markdown-examples" }, ], sidebar: [ { text: "Examples", items: [ { text: "Markdown Examples", link: "/markdown-examples" }, { text: "Runtime API Examples", link: "/api-examples" }, ], }, ], socialLinks: [ { icon: "gitea", link: "https://gitea.last2014.f5.si/peas-dev/peas", }, ], }, locales: { root: { label: "", lang: "ja", }, ja: { label: "Japanese", lang: "ja", link: "/ja", }, en: { label: "English", lang: "en", link: "/en", }, }, });