2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-29 20:24:05 +03:00
Files
vue-meta/docs/.vuepress/config.js
T
pimlie f71b0d866c docs: add Getting Started menuitem
docs: add section about Framework documentation
2019-04-20 10:46:06 +02:00

66 lines
1.4 KiB
JavaScript

module.exports = {
locales: {
'/': {
lang: 'en-US',
title: 'Vue Meta',
description: 'Metadata manager for Vue.js'
},
},
ga: 'UA-88662854-1',
serviceWorker: true,
themeConfig: {
repo: 'nuxt/vue-meta',
docsDir: 'docs',
locales: {
'/': {
label: 'English',
selectText: 'Languages',
editLinkText: 'Edit this page on GitHub',
nav: [{
text: 'Guide',
link: '/guide/'
}, {
text: 'API',
link: '/api/'
}, {
text: 'Release Notes',
link: 'https://github.com/nuxt/vue-meta/releases'
}],
sidebar: [
'/',
{
title: 'Getting started',
collapsable: false,
children: [
'/guide/',
'/guide/preparing',
'/guide/ssr',
'/guide/frameworks'
]
},
{
title: 'Usage',
collapsable: false,
children: [
'/guide/metainfo',
'/guide/special',
'/guide/caveats',
]
},
{
title: 'FAQ',
collapsable: false,
children: [
'/faq/',
'/faq/performance.md',
'/faq/prevent-initial.md',
'/faq/component-props.md',
'/faq/async-action.md',
]
}
]
},
}
}
}