github.com/okex/exchain@v1.8.0/libs/tendermint/docs/.vuepress/config.js (about) 1 module.exports = { 2 theme: "cosmos", 3 title: "Tendermint", 4 // locales: { 5 // "/": { 6 // lang: "en-US" 7 // }, 8 // "/ru/": { 9 // lang: "ru" 10 // } 11 // }, 12 base: process.env.VUEPRESS_BASE, 13 themeConfig: { 14 docsRepo: "tendermint/tendermint", 15 editLinks: true, 16 docsDir: "docs", 17 logo: "/logo.svg", 18 label: "core", 19 gutter: { 20 title: "Help & Support", 21 editLink: true, 22 forum: { 23 title: "Tendermint Forum", 24 text: "Join the Tendermint forum to learn more", 25 url: "https://forum.cosmos.network/c/tendermint", 26 bg: "#0B7E0B", 27 logo: "tendermint" 28 }, 29 github: { 30 title: "Found an Issue?", 31 text: "Help us improve this page by suggesting edits on GitHub." 32 } 33 }, 34 footer: { 35 questionsText: "Chat with Cosmos developers in [Discord](https://discordapp.com/channels/669268347736686612) or reach out on the [SDK Developer Forum](https://forum.cosmos.network/c/tendermint) to learn more.", 36 logo: "/logo-bw.svg", 37 textLink: { 38 text: "tendermint.com", 39 url: "https://tendermint.com" 40 }, 41 services: [ 42 { 43 service: "medium", 44 url: "https://medium.com/@tendermint" 45 }, 46 { 47 service: "twitter", 48 url: "https://twitter.com/tendermint_team" 49 }, 50 { 51 service: "linkedin", 52 url: "https://www.linkedin.com/company/tendermint/" 53 }, 54 { 55 service: "reddit", 56 url: "https://reddit.com/r/cosmosnetwork" 57 }, 58 { 59 service: "telegram", 60 url: "https://t.me/cosmosproject" 61 }, 62 { 63 service: "youtube", 64 url: "https://www.youtube.com/c/CosmosProject" 65 } 66 ], 67 smallprint: 68 "The development of the Tendermint project is led primarily by Tendermint Inc., the for-profit entity which also maintains this website. Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit.", 69 links: [ 70 { 71 title: "Documentation", 72 children: [ 73 { 74 title: "Cosmos SDK", 75 url: "https://cosmos.network/docs" 76 }, 77 { 78 title: "Cosmos Hub", 79 url: "https://hub.cosmos.network/" 80 } 81 ] 82 }, 83 { 84 title: "Community", 85 children: [ 86 { 87 title: "Tendermint blog", 88 url: "https://medium.com/@tendermint" 89 }, 90 { 91 title: "Forum", 92 url: "https://forum.cosmos.network/c/tendermint" 93 } 94 ] 95 }, 96 { 97 title: "Contributing", 98 children: [ 99 { 100 title: "Contributing to the docs", 101 url: "https://github.com/tendermint/tendermint" 102 }, 103 { 104 title: "Source code on GitHub", 105 url: "https://github.com/tendermint/tendermint" 106 }, 107 { 108 title: "Careers at Tendermint", 109 url: "https://tendermint.com/careers" 110 } 111 ] 112 } 113 ] 114 }, 115 sidebar: [ 116 { 117 title: "Resources", 118 children: [ 119 { 120 title: "Developer Sessions", 121 path: "/DEV_SESSIONS.html" 122 }, 123 { 124 title: "RPC", 125 path: "/master/rpc/", 126 static: true 127 } 128 ] 129 } 130 ] 131 }, 132 plugins: [ 133 [ 134 "@vuepress/google-analytics", 135 { 136 ga: "UA-51029217-11" 137 } 138 ] 139 ], 140 };