mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
14 lines
360 B
TypeScript
14 lines
360 B
TypeScript
import type { ThemeNoteListOptions } from 'vuepress-theme-plume'
|
|
import { defineNotesConfig } from 'vuepress-theme-plume'
|
|
import { themeConfig } from './theme-config'
|
|
import { themeGuide } from './theme-guide'
|
|
|
|
export const enNotes: ThemeNoteListOptions = defineNotesConfig({
|
|
dir: 'en/notes',
|
|
link: '/',
|
|
notes: [
|
|
themeGuide,
|
|
themeConfig,
|
|
],
|
|
})
|