17 lines
362 B
TypeScript
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,
|
|
],
|
|
})
|