2019-11-22 10:52:43 +08:00
|
|
|
|
module.exports = {
|
|
|
|
|
title: "vuepress-theme-reco",
|
2020-06-02 07:33:14 +08:00
|
|
|
|
description: 'A simple and beautiful vuepress blog theme.',
|
2020-04-03 23:20:29 +08:00
|
|
|
|
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',
|
2020-05-23 23:39:33 +08:00
|
|
|
|
locales: {
|
|
|
|
|
'/': {
|
|
|
|
|
lang: 'ja-JP',
|
2020-06-02 07:33:14 +08:00
|
|
|
|
title: "vuepress-theme-reco",
|
|
|
|
|
description: 'A simple and beautiful vuepress blog theme.',
|
2020-05-23 23:39:33 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
2020-04-03 22:27:09 +08:00
|
|
|
|
theme: require.resolve('../../packages/vuepress-theme-reco'),
|
2019-11-22 10:52:43 +08:00
|
|
|
|
themeConfig: {
|
2020-05-23 23:39:33 +08:00
|
|
|
|
locales: {
|
|
|
|
|
'/': {
|
|
|
|
|
recoLocales: {
|
2020-05-23 23:47:01 +08:00
|
|
|
|
pagation: {
|
|
|
|
|
prev: '上壹頁',
|
|
|
|
|
next: '下壹頁',
|
|
|
|
|
go: '前往',
|
|
|
|
|
jump: '跳轉至'
|
2020-05-23 23:39:33 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
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' },
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
2019-12-06 00:11:16 +08:00
|
|
|
|
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',
|
|
|
|
|
// 项目开始时间
|
2019-12-03 15:34:59 +08:00
|
|
|
|
startYear: '2017',
|
2019-11-22 10:52:43 +08:00
|
|
|
|
/**
|
|
|
|
|
* 密钥 (if your blog is private)
|
|
|
|
|
*/
|
2019-12-04 23:45:40 +08:00
|
|
|
|
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
|
|
|
|
}
|