feat:更新博客

This commit is contained in:
2025-11-29 21:49:12 +08:00
parent bda2256ea7
commit aa0603efff
15 changed files with 331 additions and 51 deletions

View File

@@ -20,9 +20,12 @@ export default defineConfig({
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Web前端', link: '/Web-Front/' },
{ text: 'Web后端', link: '/Web-Backend/' },
{ text: 'DevOps', link: '/DevOps/' },
{ text: 'SpringBoot', link: '/SpringBoot/' },
{ text: 'FastAPI', link: '/FastAPI/' },
{ text: 'Flutter', link: '/Flutter/' },
],
sidebar: {
'/Web-Backend/': [
@@ -57,6 +60,14 @@ export default defineConfig({
{ text: 'SpringBoot3原生镜像', link: '/SpringBoot/SpringBoot3-GraalVM' }
]
}
],
'/FastAPI/': [
{
text: 'FastAPI',
items: [
{ text: '基于OAuth2的FastApi安全验证', link: '/FastAPI/OAuth2' }
]
}
]
},
@@ -112,4 +123,8 @@ export default defineConfig({
},
lastUpdated: true,
markdown: {
lineNumbers: true
},
})