1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/vitepress/docs/.vitepress/config.ts

37 lines
896 B
TypeScript
Raw Normal View History

2022-06-06 13:24:08 +09:00
import { defineConfig } from "vitepress";
export default defineConfig({
lang: "ja-JP",
title: "VitePressのデモ",
description: "こんにちはVitePress",
lastUpdated: true,
themeConfig: {
nav: [
{ text: "右上のナビゲーション", link: "/second", activeMatch: "/second" },
],
sidebar: {
"/": [
{
text: "ドキュメント",
collapsible: true,
items: [
{ text: "最初のページ", link: "/" },
{ text: "2 番目のページ", link: "/second" },
],
},
],
},
editLink: {
repo: "kou029w/_",
dir: "vitepress/docs",
text: "Edit this page on GitHub",
},
socialLinks: [{ icon: "github", link: "https://github.com/kou029w/_" }],
footer: {
message: "フッターです",
copyright: "Copyright © kou029w",
},
},
});