vuepress-theme-reco/example/.vuepress/config.js

93 lines
2.8 KiB
JavaScript
Raw Normal View History

2019-11-22 10:52:43 +08:00
module.exports = {
title: "vuepress-theme-reco",
description: 'A simple and beautiful vuepress blog theme.',
dest: 'example/public',
2019-11-22 10:52:43 +08:00
head: [
['link', { rel: 'icon', href: '/favicon.ico' }],
['meta', { name: 'viewport', content: 'width=device-width,initial-scale=1,user-scalable=no' }]
],
// theme: 'reco',
locales: {
'/': {
lang: 'ja-JP',
title: "vuepress-theme-reco",
description: 'A simple and beautiful vuepress blog theme.',
},
},
theme: require.resolve('../../packages/vuepress-theme-reco'),
2019-11-22 10:52:43 +08:00
themeConfig: {
locales: {
'/': {
recoLocales: {
pagation: {
prev: '上壹頁',
next: '下壹頁',
go: '前往',
jump: '跳轉至'
}
}
}
},
2019-11-22 10:52:43 +08:00
nav: [
{ text: 'Home', link: '/', icon: 'reco-home' },
2019-12-30 23:07:27 +08:00
{ text: 'TimeLine', link: '/timeline/', icon: 'reco-date' },
2019-11-22 10:52:43 +08:00
{ text: 'Contact',
icon: 'reco-message',
items: [
{ text: 'NPM', link: 'https://www.npmjs.com/~reco_luan', icon: 'reco-npm' },
{ text: 'GitHub', link: 'https://github.com/recoluan', icon: 'reco-github' },
{ text: '简书', link: 'https://www.jianshu.com/u/cd674a19515e', icon: 'reco-jianshu' },
{ text: 'CSDN', link: 'https://blog.csdn.net/recoluan', icon: 'reco-csdn' },
{ text: '博客圆', link: 'https://www.cnblogs.com/luanhewei/', icon: 'reco-bokeyuan' },
{ text: 'WeChat', link: 'https://mp.weixin.qq.com/s/mXFqeUTegdvPliXknAAG_A', icon: 'reco-wechat' },
]
}
],
type: 'blog',
2019-11-22 10:52:43 +08:00
// 博客设置
blogConfig: {
category: {
location: 2, // 在导航栏菜单中所占的位置默认2
text: 'Category' // 默认 “分类”
},
tag: {
location: 3, // 在导航栏菜单中所占的位置默认3
text: 'Tag' // 默认 “标签”
}
},
2020-03-25 18:18:54 +08:00
type: 'blog',
2019-11-22 10:52:43 +08:00
logo: '/head.png',
2019-12-30 23:07:27 +08:00
authorAvatar: '/head.png',
2019-11-22 10:52:43 +08:00
// 搜索设置
search: true,
searchMaxSuggestions: 10,
// 自动形成侧边导航
sidebar: 'auto',
// 最后更新时间
lastUpdated: 'Last Updated',
// 作者
author: 'reco_luan',
// 备案号
record: 'xxxx',
// 项目开始时间
startYear: '2017',
2019-11-22 10:52:43 +08:00
/**
* 密钥 (if your blog is private)
*/
friendLink: [
{
title: '午后南杂',
desc: 'Enjoy when you can, and endure when you must.',
email: '1156743527@qq.com',
link: 'https://www.recoluan.com'
},
{
title: 'vuepress-theme-reco',
desc: 'A simple and beautiful vuepress Blog & Doc theme.',
avatar: "https://vuepress-theme-reco.recoluan.com/icon_vuepress_reco.png",
link: 'https://vuepress-theme-reco.recoluan.com'
},
]
2019-11-28 22:47:52 +08:00
}
2019-11-22 10:52:43 +08:00
}