feat:增加前端工程博客

This commit is contained in:
2025-12-13 16:27:56 +08:00
parent 8b2c289833
commit 564799001a
11 changed files with 1721 additions and 12 deletions

View File

@@ -1,7 +1,8 @@
import { defineConfig } from 'vitepress'
import { withMermaid } from 'vitepress-plugin-mermaid'
// https://vitepress.dev/reference/site-config
export default defineConfig({
export default withMermaid({
title: "拾光记",
description: "Cxx0822 Blog",
head: [
@@ -26,12 +27,16 @@ export default defineConfig({
text: 'Vue',
items: [
{ text: 'Vue3-Common', link: '/Web-Front/Vue/Vue3-Common' },
{ text: 'Vue3架构原理', link: '/Web-Front/Vue/Vue3-Architecture' }
]
},
{
text: '其他',
items: [
{ text: 'JavaScript知识点整理', link: '/Web-Front/Others/JavaScript-Guide' }
{ text: 'JavaScript知识点整理', link: '/Web-Front/Others/JavaScript-Guide' },
{ text: '前端包管理器', link: '/Web-Front/Others/Package' },
{ text: 'Vite核心原理', link: '/Web-Front/Others/Vite-Principle' },
{ text: '浏览器渲染全流程解析', link: '/Web-Front/Others/Browser-Process' }
]
},
]
@@ -91,13 +96,17 @@ export default defineConfig({
{
text: 'Vue',
items: [
{ text: 'Vue3-Common', link: '/Web-Front/Vue/Vue3-Common' }
{ text: 'Vue3-Common', link: '/Web-Front/Vue/Vue3-Common' },
{ text: 'Vue3架构原理', link: '/Web-Front/Vue/Vue3-Architecture' }
]
},
{
text: 'Others',
items: [
{ text: 'JavaScript知识点整理', link: '/Web-Front/Others/JavaScript-Guide' }
{ text: 'JavaScript知识点整理', link: '/Web-Front/Others/JavaScript-Guide' },
{ text: '前端包管理器', link: '/Web-Front/Others/Package' },
{ text: 'Vite核心原理', link: '/Web-Front/Others/Vite-Principle' },
{ text: '浏览器渲染全流程解析', link: '/Web-Front/Others/Browser-Process' }
]
},
]