github.com/ari-anchor/sei-tendermint@v0.0.0-20230519144642-dc826b7b56bb/docs/.vuepress/config.js (about)

     1  module.exports = {
     2    theme: 'cosmos',
     3    title: 'Tendermint Core',
     4    // locales: {
     5    //   "/": {
     6    //     lang: "en-US"
     7    //   },
     8    //   "/ru/": {
     9    //     lang: "ru"
    10    //   }
    11    // },
    12    base: process.env.VUEPRESS_BASE,
    13    themeConfig: {
    14      repo: 'tendermint/tendermint',
    15      docsRepo: 'tendermint/tendermint',
    16      docsDir: 'docs',
    17      editLinks: true,
    18      label: 'core',
    19      algolia: {
    20        id: "BH4D9OD16A",
    21        key: "59f0e2deb984aa9cdf2b3a5fd24ac501",
    22        index: "tendermint"
    23      },
    24      versions: [
    25        {
    26          "label": "v0.33",
    27          "key": "v0.33"
    28        },
    29        {
    30          "label": "v0.34",
    31          "key": "v0.34"
    32        },
    33        {
    34          "label": "v0.35",
    35          "key": "v0.35"
    36        }
    37      ],
    38      topbar: {
    39        banner: false,
    40      },
    41      sidebar: {
    42        auto: true,
    43        nav: [
    44          {
    45            title: 'Resources',
    46            children: [
    47              {
    48                // TODO(creachadair): Figure out how to make this per-branch.
    49                // See: https://github.com/tendermint/tendermint/issues/7908
    50                title: 'RPC',
    51                path: 'https://docs.tendermint.com/v0.35/rpc/',
    52                static: true
    53              },
    54            ]
    55          }
    56        ]
    57      },
    58      gutter: {
    59        title: 'Help & Support',
    60        editLink: true,
    61        forum: {
    62          title: 'Tendermint Forum',
    63          text: 'Join the Tendermint forum to learn more',
    64          url: 'https://forum.cosmos.network/c/tendermint',
    65          bg: '#0B7E0B',
    66          logo: 'tendermint'
    67        },
    68        github: {
    69          title: 'Found an Issue?',
    70          text: 'Help us improve this page by suggesting edits on GitHub.'
    71        }
    72      },
    73      footer: {
    74        question: {
    75          text: 'Chat with Tendermint developers in <a href=\'https://discord.gg/cosmosnetwork\' target=\'_blank\'>Discord</a> or reach out on the <a href=\'https://forum.cosmos.network/c/tendermint\' target=\'_blank\'>Tendermint Forum</a> to learn more.'
    76        },
    77        logo: '/logo-bw.svg',
    78        textLink: {
    79          text: 'tendermint.com',
    80          url: 'https://tendermint.com'
    81        },
    82        services: [
    83          {
    84            service: 'medium',
    85            url: 'https://medium.com/@tendermint'
    86          },
    87          {
    88            service: 'twitter',
    89            url: 'https://twitter.com/tendermint_team'
    90          },
    91          {
    92            service: 'linkedin',
    93            url: 'https://www.linkedin.com/company/tendermint/'
    94          },
    95          {
    96            service: 'reddit',
    97            url: 'https://reddit.com/r/cosmosnetwork'
    98          },
    99          {
   100            service: 'telegram',
   101            url: 'https://t.me/cosmosproject'
   102          },
   103          {
   104            service: 'youtube',
   105            url: 'https://www.youtube.com/c/CosmosProject'
   106          }
   107        ],
   108        smallprint:
   109          'The development of Tendermint Core is led primarily by [Interchain GmbH](https://interchain.berlin/). Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit. The Tendermint trademark is owned by Tendermint Inc, the for-profit entity that also maintains this website.',
   110        links: [
   111          {
   112            title: 'Documentation',
   113            children: [
   114              {
   115                title: 'Cosmos SDK',
   116                url: 'https://docs.cosmos.network'
   117              },
   118              {
   119                title: 'Cosmos Hub',
   120                url: 'https://hub.cosmos.network'
   121              }
   122            ]
   123          },
   124          {
   125            title: 'Community',
   126            children: [
   127              {
   128                title: 'Tendermint blog',
   129                url: 'https://medium.com/@tendermint'
   130              },
   131              {
   132                title: 'Forum',
   133                url: 'https://forum.cosmos.network/c/tendermint'
   134              }
   135            ]
   136          },
   137          {
   138            title: 'Contributing',
   139            children: [
   140              {
   141                title: 'Contributing to the docs',
   142                url: 'https://github.com/tendermint/tendermint'
   143              },
   144              {
   145                title: 'Source code on GitHub',
   146                url: 'https://github.com/tendermint/tendermint'
   147              },
   148              {
   149                title: 'Careers at Tendermint',
   150                url: 'https://tendermint.com/careers'
   151              }
   152            ]
   153          }
   154        ]
   155      }
   156    },
   157    plugins: [
   158      [
   159        '@vuepress/google-analytics',
   160        {
   161          ga: 'UA-51029217-11'
   162        }
   163      ],
   164      [
   165        '@vuepress/plugin-html-redirect',
   166        {
   167          countdown: 0
   168        }
   169      ]
   170    ]
   171  };