14 lines
408 B
TypeScript
14 lines
408 B
TypeScript
import { defineCollections, type ThemeCollections } from 'vuepress-theme-plume'
|
|
import { themeConfig } from './theme-config.js'
|
|
import { themeGuide } from './theme-guide.js'
|
|
import { tools } from './tools.js'
|
|
|
|
export const enCollections: ThemeCollections = defineCollections([
|
|
// 博客
|
|
{ type: 'post', dir: '/blog/', link: '/blog/', title: 'Blog' },
|
|
// 文档
|
|
themeGuide,
|
|
themeConfig,
|
|
tools,
|
|
])
|