From ddba4fc81099b83213b14179de60d0ec997be952 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 1 Nov 2018 18:12:22 -0400 Subject: [PATCH] Merge PR #2657: Fix config.js --- docs/.vuepress/config.js | 4 +- docs/config.js | 86 ---------------------------------------- 2 files changed, 2 insertions(+), 88 deletions(-) delete mode 100644 docs/config.js diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 5f09b5bb0..4746b3dd4 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -72,8 +72,8 @@ module.exports = { title: "Light Client", collapsable: false, children: [ - "/light/", - "/light/getting_started" + "/lite/", + "/lite/getting_started" ] }, { diff --git a/docs/config.js b/docs/config.js deleted file mode 100644 index 93426bcc5..000000000 --- a/docs/config.js +++ /dev/null @@ -1,86 +0,0 @@ -module.exports = { - title: "Cosmos Network", - description: "Documentation for the Cosmos Network.", - dest: "./dist/docs", - base: "/docs/", - markdown: { - lineNumbers: true - }, - themeConfig: { - lastUpdated: "Last Updated", - nav: [{ text: "Back to Cosmos", link: "https://cosmos.network" }], - sidebar: [ - { - title: "Introduction", - collapsable: false, - children: [ - "/introduction/cosmos-hub", - "/introduction/tendermint", - ] - }, - { - title: "Getting Started", - collapsable: false, - children: [ - "/getting-started/voyager", - "/getting-started/installation", - "/getting-started/full-node", - "/getting-started/create-testnet" - ] - }, - { - title: "Cosmos SDK", - collapsable: false, - children: [ - ["/sdk/overview", "Overview"], - ["/sdk/core/intro", "Core"], - "/sdk/core/app1", - "/sdk/core/app2", - "/sdk/core/app3", - "/sdk/core/app4", - "/sdk/core/app5", - // "/sdk/modules", - "/sdk/clients" - ] - }, - // { - // title: "Specifications", - // collapsable: false, - // children: [ - // ["/specs/overview", "Overview"], - // "/specs/governance", - // "/specs/ibc", - // "/specs/staking", - // "/specs/icts", - // ] - // }, - { - title: "Lotion JS", - collapsable: false, - children: [["/lotion/overview", "Overview"], "/lotion/building-an-app"] - }, - { - title: "Validators", - collapsable: false, - children: [ - ["/validators/overview", "Overview"], - ["/validators/security", "Security"], - ["/validators/validator-setup", "Validator Setup"], - "/validators/validator-faq" - ] - }, - { - title: "Resources", - collapsable: false, - children: [ - // ["/resources/faq" "General"], - "/resources/delegator-faq", - ["/resources/whitepaper", "Whitepaper - English"], - ["/resources/whitepaper-ko", "Whitepaper - 한국어"], - ["/resources/whitepaper-zh-CN", "Whitepaper - 中文"], - ["/resources/whitepaper-pt", "Whitepaper - Português"] - ] - } - ] - } -}