This repository has been archived on 2025-07-24. You can view files and clone it, but cannot push or open issues or pull requests.
peas-website/.vitepress/config.ts

48 lines
903 B
TypeScript

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",
},
},
});