feat:增加字体
This commit is contained in:
@@ -2,8 +2,11 @@ import { defineConfig } from 'vitepress'
|
||||
|
||||
// https://vitepress.dev/reference/site-config
|
||||
export default defineConfig({
|
||||
title: "Cxx0822",
|
||||
title: "拾光记",
|
||||
description: "Cxx0822 Blog",
|
||||
head: [
|
||||
['link', { rel: 'icon', href: '/blog-press/favicon.ico' }]
|
||||
],
|
||||
base: '/blog-press/',
|
||||
lang: 'zh-CN',
|
||||
locales: {
|
||||
@@ -13,19 +16,22 @@ export default defineConfig({
|
||||
},
|
||||
},
|
||||
themeConfig: {
|
||||
logo: "/logo.png",
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
nav: [
|
||||
{ text: 'Home', link: '/' },
|
||||
{ text: 'Web', link: '/Web/' },
|
||||
{ text: 'Web后端', link: '/Web-Backend/' },
|
||||
{ text: 'DevOps', link: '/DevOps/' },
|
||||
{ text: 'SpringBoot', link: '/SpringBoot/' }
|
||||
{ text: 'SpringBoot', link: '/SpringBoot/' },
|
||||
],
|
||||
sidebar: {
|
||||
'/Web/': [
|
||||
'/Web-Backend/': [
|
||||
{
|
||||
text: 'Web',
|
||||
text: 'Web后端',
|
||||
items: [
|
||||
{ text: 'MySQL知识点', link: '/Web/MySQL-Knowledge' }
|
||||
{ text: 'MySQL知识点', link: '/Web-Backend/MySQL-Knowledge' },
|
||||
{ text: 'Flyway简单使用', link: '/Web-Backend/Flyway' },
|
||||
{ text: 'MyBatis简介和使用', link: '/Web-Backend/MyBatis' }
|
||||
]
|
||||
},
|
||||
],
|
||||
@@ -44,7 +50,11 @@ export default defineConfig({
|
||||
text: 'SpringBoot',
|
||||
items: [
|
||||
{ text: 'Spring IOC简介', link: '/SpringBoot/SpringIOC' },
|
||||
{ text: 'SpringBoot启动流程', link: '/SpringBoot/SpringBoot-Start-Process' }
|
||||
{ text: 'SpringBoot启动流程', link: '/SpringBoot/SpringBoot-Start-Process' },
|
||||
{ text: 'Spring MVC简介', link: '/SpringBoot/SpringMVC' },
|
||||
{ text: 'SpringBoot Starter原理', link: '/SpringBoot/SpringBootStarter' },
|
||||
{ text: 'SpringBoot Bean简介', link: '/SpringBoot/SpringBootBean' },
|
||||
{ text: 'SpringBoot3原生镜像', link: '/SpringBoot/SpringBoot3-GraalVM' }
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -93,6 +103,9 @@ export default defineConfig({
|
||||
next: '下一篇'
|
||||
},
|
||||
|
||||
sidebarMenuLabel: '菜单',
|
||||
darkModeSwitchLabel: '外观',
|
||||
|
||||
lastUpdated: {
|
||||
text: '最后更新于'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user