Files
blog/.vitepress/config.mts
kerbores 558ba712eb 🎉 初始化
Signed-off-by: kerbores <kerbores@gmail.com>
2025-08-07 16:07:16 +08:00

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