29 lines
538 B
TypeScript
29 lines
538 B
TypeScript
import type { ThemeNote } from 'vuepress-theme-plume'
|
|
import { defineNoteConfig } from 'vuepress-theme-plume'
|
|
|
|
export const themeConfig: ThemeNote = defineNoteConfig({
|
|
dir: 'theme/config',
|
|
link: '/config/',
|
|
sidebar: [
|
|
{
|
|
text: 'Config',
|
|
collapsed: false,
|
|
items: [
|
|
'intro',
|
|
'basic',
|
|
'locales',
|
|
'notes',
|
|
],
|
|
},
|
|
{
|
|
text: 'frontmatter',
|
|
prefix: 'frontmatter',
|
|
collapsed: false,
|
|
items: [
|
|
'basic',
|
|
'article',
|
|
],
|
|
},
|
|
],
|
|
})
|