2024-09-11 00:03:13 +08:00

17 lines
362 B
TypeScript

import { defineNotesConfig } from 'vuepress-theme-plume'
import { plugins } from './plugins'
import { themeConfig } from './theme-config'
import { themeGuide } from './theme-guide'
import { tools } from './tools'
export const zhNotes = defineNotesConfig({
dir: 'notes',
link: '/',
notes: [
themeGuide,
themeConfig,
plugins,
tools,
],
})