Skip to content
Snippets Groups Projects
Commit d60137a0 authored by Jakub Pelka's avatar Jakub Pelka :cat2:
Browse files

Cleanup config, fix path

parent afcb8328
No related branches found
No related tags found
1 merge request!2Bring master up to date, merge updated CI
# Dependencies # Dependencies
/node_modules /node_modules
package-lock.json
yarn.lock
# Production # Production
/build /build
......
...@@ -7,7 +7,7 @@ sidebar_position: 3 ...@@ -7,7 +7,7 @@ sidebar_position: 3
This document provides brief descriptions of all public functions, types, and interfaces exposed by the Client API (xxDK). <!-- Each item links to a page with more detail. --> This document provides brief descriptions of all public functions, types, and interfaces exposed by the Client API (xxDK). <!-- Each item links to a page with more detail. -->
:::note :::note
If you are new to the xxDK, you can start with the [Overview](./overview) and [Getting Started](./getting-started) docs. If you are new to the xxDK, you can start with the [Overview](/) and [Getting Started](./getting-started) docs.
::: :::
Note that if you're running the client locally, you can use `go doc` to explore the list of functions and interfaces. Note that if you're running the client locally, you can use `go doc` to explore the list of functions and interfaces.
......
...@@ -10,7 +10,7 @@ const config = { ...@@ -10,7 +10,7 @@ const config = {
tagline: 'The frontend of the CMix protocol', tagline: 'The frontend of the CMix protocol',
url: 'https://xxdk-dev.xx.network', url: 'https://xxdk-dev.xx.network',
baseUrl: '/', baseUrl: '/',
onBrokenLinks: 'warn', onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn', onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico', favicon: 'img/favicon.ico',
organizationName: 'xxnetwork', // Usually your GitHub org/user name. organizationName: 'xxnetwork', // Usually your GitHub org/user name.
...@@ -27,12 +27,7 @@ const config = { ...@@ -27,12 +27,7 @@ const config = {
// Please change this to your repo. // Please change this to your repo.
editUrl: 'https://github.com/facebook/docusaurus/edit/main/website/', editUrl: 'https://github.com/facebook/docusaurus/edit/main/website/',
}, },
blog: { blog: false,
showReadingTime: true,
// Please change this to your repo.
editUrl:
'https://github.com/facebook/docusaurus/edit/main/website/blog/',
},
theme: { theme: {
customCss: require.resolve('./src/css/custom.css'), customCss: require.resolve('./src/css/custom.css'),
}, },
...@@ -56,7 +51,6 @@ const config = { ...@@ -56,7 +51,6 @@ const config = {
position: 'left', position: 'left',
label: 'Docs', label: 'Docs',
}, },
// {to: '/blog', label: 'Blog', position: 'left'},
{ {
href: 'https://git.xx.network/elixxir/xxdk-dev-docs', href: 'https://git.xx.network/elixxir/xxdk-dev-docs',
label: 'GitHub', label: 'GitHub',
...@@ -67,15 +61,6 @@ const config = { ...@@ -67,15 +61,6 @@ const config = {
footer: { footer: {
style: 'dark', style: 'dark',
links: [ links: [
// {
// title: 'Docs',
// items: [
// {
// label: 'Tutorial',
// to: '/docs/intro',
// },
// ],
// },
{ {
title: 'Community', title: 'Community',
items: [ items: [
...@@ -96,10 +81,6 @@ const config = { ...@@ -96,10 +81,6 @@ const config = {
{ {
title: 'More', title: 'More',
items: [ items: [
//{
// label: 'Blog',
// to: '/blog',
//},
{ {
label: 'GitHub', label: 'GitHub',
href: 'https://github.com/facebook/docusaurus', href: 'https://github.com/facebook/docusaurus',
...@@ -107,7 +88,7 @@ const config = { ...@@ -107,7 +88,7 @@ const config = {
], ],
}, },
], ],
copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, copyright: `Copyright © ${new Date().getFullYear()} xx network. Built with Docusaurus.`,
}, },
prism: { prism: {
theme: lightCodeTheme, theme: lightCodeTheme,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment