2020-09-09 23:17:31 +03:00
|
|
|
module.exports = {
|
2020-09-10 00:01:43 +03:00
|
|
|
title: 'NestJS Telegraf',
|
|
|
|
tagline: 'Powerful Nest module for easy and fast creation Telegram bots',
|
2020-09-10 00:26:12 +03:00
|
|
|
url: 'https://nestjs-telegraf.vercel.app',
|
2020-09-09 23:17:31 +03:00
|
|
|
baseUrl: '/',
|
|
|
|
onBrokenLinks: 'throw',
|
|
|
|
favicon: 'img/favicon.ico',
|
2020-12-30 20:37:11 +03:00
|
|
|
organizationName: 'bukhalo', // Usually your GitHub org/user name.
|
2020-09-10 00:01:43 +03:00
|
|
|
projectName: 'nestjs-telegraf', // Usually your repo name.
|
2020-09-09 23:17:31 +03:00
|
|
|
themeConfig: {
|
|
|
|
navbar: {
|
2020-09-10 00:01:43 +03:00
|
|
|
title: 'NestJS Telegraf',
|
|
|
|
// logo: {
|
|
|
|
// alt: 'My Site Logo',
|
|
|
|
// src: 'img/logo.svg',
|
|
|
|
// },
|
2020-09-09 23:17:31 +03:00
|
|
|
items: [
|
2020-09-10 11:23:04 +03:00
|
|
|
{
|
|
|
|
type: 'docsVersionDropdown',
|
|
|
|
position: 'left',
|
|
|
|
},
|
2020-09-09 23:17:31 +03:00
|
|
|
{
|
|
|
|
to: 'docs/',
|
|
|
|
activeBasePath: 'docs',
|
|
|
|
label: 'Docs',
|
|
|
|
position: 'left',
|
|
|
|
},
|
2020-09-10 00:01:43 +03:00
|
|
|
// {to: 'blog', label: 'Blog', position: 'left'},
|
2020-09-09 23:17:31 +03:00
|
|
|
{
|
2020-12-30 20:37:11 +03:00
|
|
|
href: 'https://github.com/bukhalo/nestjs-telegraf',
|
2020-09-09 23:17:31 +03:00
|
|
|
label: 'GitHub',
|
|
|
|
position: 'right',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
footer: {
|
|
|
|
style: 'dark',
|
2020-09-10 00:01:43 +03:00
|
|
|
// links: [
|
|
|
|
// {
|
|
|
|
// title: 'Docs',
|
|
|
|
// items: [
|
|
|
|
// {
|
|
|
|
// label: 'Style Guide',
|
|
|
|
// to: 'docs/',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// label: 'Second Doc',
|
|
|
|
// to: 'docs/doc2/',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Community',
|
|
|
|
// items: [
|
|
|
|
// {
|
|
|
|
// label: 'Stack Overflow',
|
|
|
|
// href: 'https://stackoverflow.com/questions/tagged/docusaurus',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// label: 'Discord',
|
|
|
|
// href: 'https://discordapp.com/invite/docusaurus',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// label: 'Twitter',
|
|
|
|
// href: 'https://twitter.com/docusaurus',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'More',
|
|
|
|
// items: [
|
|
|
|
// {
|
|
|
|
// label: 'Blog',
|
|
|
|
// to: 'blog',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// label: 'GitHub',
|
|
|
|
// href: 'https://github.com/facebook/docusaurus',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
copyright: `Copyright © ${new Date().getFullYear()} NestJS Telegraf.`,
|
2020-09-09 23:17:31 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@docusaurus/preset-classic',
|
|
|
|
{
|
|
|
|
docs: {
|
|
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
|
|
// Please change this to your repo.
|
|
|
|
editUrl:
|
2020-12-30 20:37:11 +03:00
|
|
|
'https://github.com/bukhalo/nestjs-telegraf/edit/master/website/',
|
2020-09-10 11:23:04 +03:00
|
|
|
showLastUpdateAuthor: true,
|
|
|
|
showLastUpdateTime: true,
|
2020-09-09 23:17:31 +03:00
|
|
|
},
|
2020-09-10 00:01:43 +03:00
|
|
|
// blog: {
|
|
|
|
// showReadingTime: true,
|
|
|
|
// // Please change this to your repo.
|
|
|
|
// editUrl:
|
2020-12-30 20:37:11 +03:00
|
|
|
// 'https://github.com/bukhalo/nestjs-telegraf/edit/master/website/blog/',
|
2020-09-10 00:01:43 +03:00
|
|
|
// },
|
2020-09-09 23:17:31 +03:00
|
|
|
theme: {
|
|
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
};
|