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,
],
})