vue-disqus
Version:
Vue component to integrate Disqus comments in your application, with support for SPA
51 lines (50 loc) • 1.29 kB
JavaScript
module.exports = {
base: '/vue-disqus/',
theme: 'default-vue-a11y',
title: 'Vue Disqus',
description: 'Vue component to integrate Disqus comments in your application, with support for SPA',
head: [
['meta', { name: 'theme-color', content: '#fff' }],
['link', { rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }]
],
themeConfig: {
home: false,
repo: 'ktquez/vue-disqus',
docsDir: 'docs',
docsBranch: 'master',
editLinks: true,
locales: {
'/': {
editLinkText: 'Edit this page on GitHub',
sidebar: [
{
title: 'Getting Started',
collapsable: false,
children: [
'/',
'/setup.md',
'/reset.md'
]
},
{
title: 'Components',
collapsable: false,
children: [
'/components/disqus.md',
'/components/disqus-count.md'
]
},
{
title: 'How to',
collapsable: false,
children: [
'/howto/cdn.md',
'/howto/nuxt.md',
'/howto/vuepress.md'
]
}
]
}
}
}
};