Files
pezkuwi-ui/docs/.vuepress/config.js
T
Jaco Greeff cd5e62f89a Align with into and links to other parts (#90)
* Align with into and links to other parts

* Bump deps
2019-03-01 13:00:31 +01:00

33 lines
1.0 KiB
JavaScript

module.exports = {
base: '/ui/',
title: 'polkadot-js/ui',
description: 'UI utilities, libraries and React components in use accross @polkadot projects',
markdown: {
lineNumbers: true
},
themeConfig: {
displayAllHeaders: true,
nav: [
{ text: 'Polkadot/Substrate Apps', link: 'https://polkadot.js.org/apps/' },
{ text: 'Project family', link: 'https://polkadot.js.org/' },
{
text: 'Documentation',
items: [
{ text: 'API Reference', link: 'https://polkadot.js.org/api/' },
{ text: 'Utility Reference', link: 'https://polkadot.js.org/common/' },
{ text: 'UI Libs Reference (this)', link: 'https://polkadot.js.org/ui/' },
]
},
{ text: 'GitHub', link: 'https://github.com/polkadot-js/ui' }
],
search: false,
sidebar: [
['/ui-identicon/', '@polkadot/ui-identicon'],
['/ui-keyring/', '@polkadot/ui-keyring'],
['/ui-settings/', '@polkadot/ui-settings'],
['/ui-util/', '@polkadot/ui-util'],
'/CONTRIBUTING.md'
]
}
};