mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
23 lines
676 B
TypeScript
23 lines
676 B
TypeScript
import * as path from 'path'
|
|
import { defineUserConfig } from 'vuepress'
|
|
import type { DefaultThemeOptions } from 'vuepress'
|
|
|
|
export default defineUserConfig<DefaultThemeOptions>({
|
|
lang: 'zh',
|
|
title: '示例博客',
|
|
description: '热爱生活',
|
|
dest: 'docs',
|
|
temp: 'example/.vuepress/.temp',
|
|
cache: 'example/.vuepress/.cache',
|
|
public: 'example/public',
|
|
theme: path.resolve(__dirname, './lib/node/index.js'),
|
|
themeConfig: {
|
|
bannerImg: '/big-banner.jpg', // 1200x300
|
|
avatarUrl: '/avatar.gif',
|
|
avatar: '未闻花名',
|
|
github: 'https://github.com/',
|
|
email: '_@outlook.com',
|
|
description: '学习,生活,娱乐,我全都要',
|
|
},
|
|
})
|