mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-08-04 17:55:42 +00:00
28b991d61d
* Add documentation on GH pages * Expand classes for doc generation * Update docs * .nojekyll * Update Identicon.tsx * Update Demo.tsx * Update KeyPair.tsx * Export specific icons * Convert tests to TypeScript
23 lines
592 B
JavaScript
23 lines
592 B
JavaScript
module.exports = {
|
|
base: '/ui/',
|
|
title: 'polkadot-js/ui',
|
|
description: 'UI libraries and utilities in-use accross @polkadot projects',
|
|
markdown: {
|
|
lineNumbers: true
|
|
},
|
|
themeConfig: {
|
|
displayAllHeaders: true,
|
|
lastUpdated: 'Last Updated',
|
|
nav: [
|
|
{ text: 'GitHub', link: 'https://github.com/polkadot-js/ui' }
|
|
],
|
|
sidebar: [
|
|
['/ui-identicon/', '@polkadot/ui-identicon'],
|
|
['/ui-keyring/', '@polkadot/ui-keyring'],
|
|
['/ui-settings/', '@polkadot/ui-settings'],
|
|
['/ui-util/', '@polkadot/ui-util'],
|
|
'/CONTRIBUTING.md'
|
|
]
|
|
}
|
|
};
|