2019-09-03 14:40:19 -04:00
|
|
|
module.exports = {
|
2019-10-03 14:54:46 -04:00
|
|
|
title: 'SUBSPACE',
|
2019-09-03 14:40:19 -04:00
|
|
|
description: 'Reactive ÐApp Development',
|
2019-09-27 15:24:05 -04:00
|
|
|
base: '/subspace-docs/',
|
2019-09-04 21:41:25 -04:00
|
|
|
markdown: {
|
|
|
|
lineNumbers: true
|
|
|
|
},
|
2019-09-03 14:40:19 -04:00
|
|
|
themeConfig: {
|
2019-10-03 14:54:46 -04:00
|
|
|
logo: "/assets/img/logo-small.png",
|
2019-09-03 14:40:19 -04:00
|
|
|
displayAllHeaders: true,
|
2019-09-25 10:17:55 -04:00
|
|
|
search: false,
|
2019-09-03 14:40:19 -04:00
|
|
|
nav: [
|
|
|
|
{ text: 'Getting Started', link: '/getting-started/' },
|
2019-09-03 20:13:43 -04:00
|
|
|
{ text: 'Tutorial', link: '/tutorial' },
|
2019-09-03 14:40:19 -04:00
|
|
|
{ text: 'Integrations', link: '/integrations-overview' },
|
2019-09-03 20:13:43 -04:00
|
|
|
{ text: 'API', link: '/api' },
|
2019-09-27 15:24:05 -04:00
|
|
|
{ text: 'Github', link: 'https://github.com/status-im/subspace' },
|
2019-09-03 14:40:19 -04:00
|
|
|
],
|
|
|
|
sidebar: [
|
|
|
|
'/',
|
|
|
|
'/how-it-works',
|
|
|
|
'/getting-started',
|
|
|
|
{
|
|
|
|
title: 'Integrations',
|
|
|
|
collapsable: false,
|
|
|
|
children: [
|
|
|
|
['/integrations-overview', 'Overview'],
|
|
|
|
'/react',
|
2019-09-03 20:13:43 -04:00
|
|
|
{
|
|
|
|
title: 'Redux',
|
|
|
|
collapsable: false,
|
|
|
|
children: [
|
|
|
|
'/redux',
|
2019-09-06 09:28:26 -04:00
|
|
|
'/redux-observable'
|
2019-09-03 20:13:43 -04:00
|
|
|
]
|
|
|
|
},
|
2019-09-10 13:33:00 -04:00
|
|
|
'/reactive-graphql',
|
2019-09-03 20:13:43 -04:00
|
|
|
'/apollo-client'
|
2019-09-03 14:40:19 -04:00
|
|
|
]
|
|
|
|
},
|
2019-09-03 20:13:43 -04:00
|
|
|
['/tutorial', 'Tutorial'],
|
|
|
|
'/api'
|
2019-09-03 14:40:19 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
};
|