vuepress-theme-reco/index.js

78 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-04-15 10:35:40 +08:00
const path = require('path')
// Theme API.
module.exports = (options, ctx) => ({
alias () {
const { themeConfig, siteConfig } = ctx
// resolve algolia
const isAlgoliaSearch = (
2019-09-20 13:54:13 +08:00
themeConfig.algolia ||
Object.keys(siteConfig.locales && themeConfig.locales || {})
2019-04-15 10:35:40 +08:00
.some(base => themeConfig.locales[base].algolia)
)
return {
'@AlgoliaSearchBox': isAlgoliaSearch
? path.resolve(__dirname, 'components/AlgoliaSearchBox.vue')
: path.resolve(__dirname, 'noopModule.js'),
'@SearchBox': path.resolve(__dirname, 'components/SearchBox.vue')
2019-04-15 10:35:40 +08:00
}
},
plugins: [
'@vuepress-reco/back-to-top',
'@vuepress-reco/extract-code',
'@vuepress-reco/loading-page',
'@vuepress-reco/pagation',
2019-10-16 15:06:20 +08:00
'@vuepress-reco/comments',
2019-04-15 10:35:40 +08:00
'@vuepress/active-header-links',
['@vuepress/medium-zoom', {
selector: '.theme-reco-content :not(a) > img'
}],
'@vuepress/plugin-nprogress',
2019-06-25 11:31:44 +08:00
['@vuepress/plugin-blog', {
permalink: '/:regular',
frontmatters: [
{
id: 'tags',
keys: ['tags'],
path: '/tag/',
layout: 'Tags',
scopeLayout: 'Tag'
},
{
id: 'categories',
keys: ['categories'],
path: '/categories/',
layout: 'Categories',
scopeLayout: 'Category'
},
{
id: 'timeline',
keys: ['timeline'],
path: '/timeline/',
layout: 'TimeLines',
scopeLayout: 'TimeLine'
2019-10-09 19:14:28 +08:00
}
]
2019-06-25 11:31:44 +08:00
}],
2019-04-15 10:35:40 +08:00
['container', {
type: 'tip',
defaultTitle: {
'/zh/': '提示'
}
}],
['container', {
type: 'warning',
defaultTitle: {
'/zh/': '注意'
}
}],
['container', {
type: 'danger',
defaultTitle: {
'/zh/': '警告'
}
}]
]
})