- module.exports = {
- theme: "cosmos",
- title: "Tendermint",
- // locales: {
- // "/": {
- // lang: "en-US"
- // },
- // "/ru/": {
- // lang: "ru"
- // }
- // },
- base: process.env.VUEPRESS_BASE,
- themeConfig: {
- docsRepo: "tendermint/tendermint",
- editLinks: true,
- docsDir: "docs",
- logo: "/logo.svg",
- label: "core",
- gutter: {
- title: "Help & Support",
- editLink: true,
- chat: {
- title: "Riot Chat",
- text: "Chat with Tendermint developers on Riot Chat.",
- url: "https://riot.im/app/#/room/#tendermint:matrix.org",
- bg: "#222"
- },
- forum: {
- title: "Tendermint Forum",
- text: "Join the Tendermint forum to learn more",
- url: "https://forum.cosmos.network/c/tendermint",
- bg: "#0B7E0B",
- logo: "tendermint"
- },
- github: {
- title: "Found an Issue?",
- text: "Help us improve this page by suggesting edits on GitHub."
- }
- },
- footer: {
- logo: "/logo-bw.svg",
- textLink: {
- text: "tendermint.com",
- url: "https://tendermint.com"
- },
- services: [
- {
- service: "medium",
- url: "https://medium.com/@tendermint"
- },
- {
- service: "twitter",
- url: "https://twitter.com/tendermint_team"
- },
- {
- service: "linkedin",
- url: "https://www.linkedin.com/company/tendermint/"
- },
- {
- service: "reddit",
- url: "https://reddit.com/r/cosmosnetwork"
- },
- {
- service: "telegram",
- url: "https://t.me/cosmosproject"
- },
- {
- service: "youtube",
- url: "https://www.youtube.com/c/CosmosProject"
- }
- ],
- smallprint:
- "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.",
- links: [
- {
- title: "Documentation",
- children: [
- {
- title: "Cosmos SDK",
- url: "https://cosmos.network/docs"
- },
- {
- title: "Cosmos Hub",
- url: "https://hub.cosmos.network/"
- }
- ]
- },
- {
- title: "Community",
- children: [
- {
- title: "Tendermint blog",
- url: "https://medium.com/@tendermint"
- },
- {
- title: "Forum",
- url: "https://forum.cosmos.network/c/tendermint"
- },
- {
- title: "Chat",
- url: "https://riot.im/app/#/room/#tendermint:matrix.org"
- }
- ]
- },
- {
- title: "Contributing",
- children: [
- {
- title: "Contributing to the docs",
- url: "https://github.com/tendermint/tendermint"
- },
- {
- title: "Source code on GitHub",
- url: "https://github.com/tendermint/tendermint"
- },
- {
- title: "Careers at Tendermint",
- url: "https://tendermint.com/careers"
- }
- ]
- }
- ]
- },
- sidebar: [
- {
- title: "Resources",
- children: [
- {
- title: "Developer Sessions",
- path: "/DEV_SESSIONS.html"
- },
- {
- title: "RPC",
- path: "/master/rpc/",
- static: true
- }
- ]
- }
- ]
- },
- markdown: {
- anchor: {
- permalinkSymbol: ""
- }
- },
- plugins: [
- [
- "@vuepress/google-analytics",
- {
- ga: "UA-51029217-11"
- }
- ]
- ],
- };
|