mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
* feat(theme)!: migrate `plugin-markdown-hint` * chore: tweak * chore: tweak * chore: tweak * chore: tweak * chore: tweak * chore: tweak * chore: tweak * chore: tweak * chore: tweak * chore: tweak * fix(theme): improve `home-blog` styles in mobile, close #210 * chore: tweak * chore: tweak * chore: tweak * feat: add support optional icon for `file-tree` and `code-tabs` * chore: tweak * chore: tweak * chore: tweak * chore: tweak
48 lines
896 B
TypeScript
48 lines
896 B
TypeScript
import { defineNoteConfig } from 'vuepress-theme-plume'
|
|
|
|
export const themeConfig = defineNoteConfig({
|
|
dir: 'theme/config',
|
|
link: '/config/',
|
|
sidebar: [
|
|
{
|
|
text: '配置',
|
|
collapsed: false,
|
|
items: [
|
|
'配置说明',
|
|
'多语言配置',
|
|
'主题配置',
|
|
'导航栏配置',
|
|
'notes配置',
|
|
'侧边栏配置',
|
|
],
|
|
},
|
|
{
|
|
text: 'frontmatter',
|
|
prefix: 'frontmatter',
|
|
collapsed: false,
|
|
items: [
|
|
'basic',
|
|
'home',
|
|
'post',
|
|
'friend',
|
|
],
|
|
},
|
|
{
|
|
text: '内置插件',
|
|
prefix: 'plugins',
|
|
collapsed: false,
|
|
items: [
|
|
'',
|
|
'代码高亮',
|
|
'搜索',
|
|
'阅读统计',
|
|
'markdown增强',
|
|
'markdownPower',
|
|
'markdownImage',
|
|
'markdownMath',
|
|
'水印',
|
|
],
|
|
},
|
|
],
|
|
})
|