UNPKG

@nine-theme/vuepress-theme-nine

Version:
99 lines (96 loc) 2.42 kB
const path = require('path') // Theme API. module.exports = (options, ctx) => ({ alias () { const { themeConfig, siteConfig } = ctx // resolve algolia const isAlgoliaSearch = ( themeConfig.algolia || Object.keys(siteConfig.locales && themeConfig.locales || {}) .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') } }, plugins: [ '@nine-theme/back-to-top', '@nine-theme/loading-page', '@nine-theme/pagation', '@nine-theme/comments', '@vuepress/active-header-links', ['@vuepress/medium-zoom', { selector: '.theme-nine-content :not(a) > img' }], '@vuepress/plugin-nprogress', ['@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' } ] }], 'vuepress-plugin-smooth-scroll', ['container', { type: 'tip', defaultTitle: { '/': '', '/zh/': '提示' } }], ['container', { type: 'warning', defaultTitle: { '/': '', '/zh/': '注意' } }], ['container', { type: 'danger', defaultTitle: { '/': '', '/zh/': '警告' } }], ['container', { type: 'right', defaultTitle: '' }], ['container', { type: 'theorem', before: info => `<div class="custom-block theorem"><p class="title">${info}</p>`, after: '</div>' }], ['container', { type: 'details', before: info => `<details class="custom-block details">${info ? `<summary>${info}</summary>` : ''}\n`, after: () => '</details>\n', defaultTitle: { '/': 'See More', '/zh/': '更多' } }] ] })