mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-23 04:58:03 +00:00
0acf9520c8
* Bump deps, remove deprecated ui-util * Bumop, fix lint * Update vuepress config (excl. removed ui-util)
32 lines
1020 B
JavaScript
32 lines
1020 B
JavaScript
module.exports = {
|
|
base: '/ui/',
|
|
title: 'polkadot-js/ui',
|
|
description: 'UI utilities, libraries and React components in use across @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'],
|
|
'/CONTRIBUTING.md'
|
|
]
|
|
}
|
|
};
|