vuepress-theme-reco/index.js

69 lines
1.5 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')
}
},
plugins: [
'@vuepress-reco/back-to-top',
'@vuepress-reco/loading-page',
'@vuepress-reco/pagation',
'@vuepress-reco/screenfull',
2019-10-09 19:14:28 +08:00
'@vuepress-reco/ga',
2019-10-16 15:06:20 +08:00
'@vuepress-reco/comments',
2019-04-15 10:35:40 +08:00
'@vuepress/active-header-links',
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'
2019-10-09 19:14:28 +08:00
}
]
2019-06-25 11:31:44 +08:00
}],
2019-04-15 10:35:40 +08:00
'@vuepress/search',
'@vuepress/plugin-nprogress',
['container', {
type: 'tip',
defaultTitle: {
'/zh/': '提示'
}
}],
['container', {
type: 'warning',
defaultTitle: {
'/zh/': '注意'
}
}],
['container', {
type: 'danger',
defaultTitle: {
'/zh/': '警告'
}
}]
]
})