github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/cosmos-sdk/docs/.vuepress/config.js (about) 1 module.exports = { 2 theme: "cosmos", 3 title: "Cosmos SDK", 4 locales: { 5 "/": { 6 lang: "en-US" 7 }, 8 kr: { 9 lang: "kr" 10 }, 11 cn: { 12 lang: "cn" 13 }, 14 ru: { 15 lang: "ru" 16 } 17 }, 18 base: process.env.VUEPRESS_BASE || "/", 19 head: [ 20 ['link', { rel: "apple-touch-icon", sizes: "180x180", href: "/apple-touch-icon.png" }], 21 ['link', { rel: "icon", type: "image/png", sizes: "32x32", href: "/favicon-32x32.png" }], 22 ['link', { rel: "icon", type: "image/png", sizes: "16x16", href: "/favicon-16x16.png" }], 23 ['link', { rel: "manifest", href: "/site.webmanifest" }], 24 ['meta', { name: "msapplication-TileColor", content: "#2e3148" }], 25 ['meta', { name: "theme-color", content: "#ffffff" }], 26 ['link', { rel: "icon", type: "image/svg+xml", href: "/favicon-svg.svg" }], 27 ['link', { rel: "apple-touch-icon-precomposed", href: "/apple-touch-icon-precomposed.png" }], 28 ], 29 themeConfig: { 30 repo: "cosmos/cosmos-sdk", 31 docsRepo: "cosmos/cosmos-sdk", 32 docsDir: "docs", 33 editLinks: true, 34 label: "sdk", 35 algolia: { 36 id: "BH4D9OD16A", 37 key: "ac317234e6a42074175369b2f42e9754", 38 index: "cosmos-sdk" 39 }, 40 topbar: { 41 banner: true 42 }, 43 sidebar: { 44 auto: true, 45 nav: [ 46 { 47 title: "Using the SDK", 48 children: [ 49 { 50 title: "Modules", 51 directory: true, 52 path: "/modules" 53 } 54 ] 55 }, 56 { 57 title: "Resources", 58 children: [ 59 { 60 title: "Tutorials", 61 path: "https://tutorials.cosmos.network" 62 }, 63 { 64 title: "SDK API Reference", 65 path: "https://godoc.org/github.com/cosmos/cosmos-sdk" 66 }, 67 { 68 title: "REST API Spec", 69 path: "https://cosmos.network/rpc/" 70 } 71 ] 72 } 73 ] 74 }, 75 gutter: { 76 title: "Help & Support", 77 editLink: true, 78 chat: { 79 title: "Discord", 80 text: "Chat with Cosmos developers on Discord.", 81 url: "https://discordapp.com/channels/669268347736686612", 82 bg: "linear-gradient(225.11deg, #2E3148 0%, #161931 95.68%)" 83 }, 84 forum: { 85 title: "Cosmos SDK Forum", 86 text: "Join the SDK Developer Forum to learn more.", 87 url: "https://forum.cosmos.network/", 88 bg: "linear-gradient(225deg, #46509F -1.08%, #2F3564 95.88%)", 89 logo: "cosmos" 90 }, 91 github: { 92 title: "Found an Issue?", 93 text: "Help us improve this page by suggesting edits on GitHub." 94 } 95 }, 96 footer: { 97 question: { 98 text: "Chat with Cosmos developers in <a href='https://discord.gg/W8trcGV' target='_blank'>Discord</a> or reach out on the <a href='https://forum.cosmos.network/c/tendermint' target='_blank'>SDK Developer Forum</a> to learn more." 99 }, 100 logo: "/logo-bw.svg", 101 textLink: { 102 text: "cosmos.network", 103 url: "https://cosmos.network" 104 }, 105 services: [ 106 { 107 service: "medium", 108 url: "https://blog.cosmos.network/" 109 }, 110 { 111 service: "twitter", 112 url: "https://twitter.com/cosmos" 113 }, 114 { 115 service: "linkedin", 116 url: "https://www.linkedin.com/company/tendermint/" 117 }, 118 { 119 service: "reddit", 120 url: "https://reddit.com/r/cosmosnetwork" 121 }, 122 { 123 service: "telegram", 124 url: "https://t.me/cosmosproject" 125 }, 126 { 127 service: "youtube", 128 url: "https://www.youtube.com/c/CosmosProject" 129 } 130 ], 131 smallprint: 132 "This website is maintained by Tendermint Inc. The contents and opinions of this website are those of Tendermint Inc.", 133 links: [ 134 { 135 title: "Documentation", 136 children: [ 137 { 138 title: "Cosmos SDK", 139 url: "https://docs.cosmos.network" 140 }, 141 { 142 title: "Cosmos Hub", 143 url: "https://hub.cosmos.network" 144 }, 145 { 146 title: "Tendermint Core", 147 url: "https://docs.tendermint.com" 148 } 149 ] 150 }, 151 { 152 title: "Community", 153 children: [ 154 { 155 title: "Cosmos blog", 156 url: "https://blog.cosmos.network" 157 }, 158 { 159 title: "Forum", 160 url: "https://forum.cosmos.network" 161 }, 162 { 163 title: "Chat", 164 url: "https://discord.gg/W8trcGV" 165 } 166 ] 167 }, 168 { 169 title: "Contributing", 170 children: [ 171 { 172 title: "Contributing to the docs", 173 url: 174 "https://github.com/cosmos/cosmos-sdk/blob/master/docs/DOCS_README.md" 175 }, 176 { 177 title: "Source code on GitHub", 178 url: "https://github.com/cosmos/cosmos-sdk/" 179 } 180 ] 181 } 182 ] 183 } 184 }, 185 plugins: [ 186 [ 187 "@vuepress/google-analytics", 188 { 189 ga: "UA-51029217-12" 190 } 191 ], 192 [ 193 "sitemap", 194 { 195 hostname: "https://docs.cosmos.network" 196 } 197 ] 198 ] 199 };