29 lines
592 B
TypeScript
29 lines
592 B
TypeScript
import { defineConfig } from "vitepress";
|
|
|
|
export default defineConfig({
|
|
title: "我的技术博客",
|
|
description: "记录技术学习与分享",
|
|
themeConfig: {
|
|
nav: [
|
|
{ text: "首页", link: "/" },
|
|
{ text: "归档", link: "/archive" },
|
|
{ text: "标签", link: "/tags" },
|
|
],
|
|
sidebar: {
|
|
"/posts/": getPostSidebar(),
|
|
},
|
|
},
|
|
});
|
|
|
|
function getPostSidebar() {
|
|
return [
|
|
{
|
|
text: "文章列表",
|
|
items: [
|
|
{ text: "按时间排序", link: "/archive" },
|
|
{ text: "按标签分类", link: "/tags" },
|
|
],
|
|
},
|
|
];
|
|
}
|