nestjs-telegraf/website/docusaurus.config.js

82 lines
2.2 KiB
JavaScript
Raw Normal View History

2020-09-09 23:17:31 +03:00
module.exports = {
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',
2021-08-05 12:45:35 +03:00
organizationName: 'bukhalo',
projectName: 'nestjs-telegraf',
2020-09-09 23:17:31 +03:00
themeConfig: {
navbar: {
title: 'NestJS Telegraf',
2020-09-09 23:17:31 +03:00
items: [
{
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',
2021-02-14 23:59:26 +03:00
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
2021-08-05 12:45:35 +03:00
to: '/',
2021-02-14 23:59:26 +03:00
},
],
},
{
title: 'Community',
items: [
{
label: 'Discussions',
href: 'https://github.com/bukhalo/nestjs-telegraf/discussions',
},
{
label: 'Telegram',
href: 'https://t.me/nestjs_telegraf',
},
],
},
{
title: 'More',
items: [
{
label: 'Issues',
href: 'https://github.com/bukhalo/nestjs-telegraf/issues',
},
{
label: 'Examples',
to: 'https://github.com/bukhalo/nestjs-telegraf/tree/master/sample/',
}
],
},
],
2021-08-05 12:45:35 +03:00
copyright: `Copyright © 2019 - ${new Date().getFullYear()}, <a target="_blank" href="https://bukhalo.com">Alexander Bukhalo</a>, <a target="_blank" href="mailto:arthur.asimov.z0@gmail.com">Arthur Asimov</a> and <a target="_blank" href="https://github.com/bukhalo/nestjs-telegraf/graphs/contributors">Others</a>.`,
2020-09-09 23:17:31 +03:00
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
2021-08-05 12:45:35 +03:00
routeBasePath: '/',
2020-09-09 23:17:31 +03:00
editUrl:
2020-12-30 20:37:11 +03:00
'https://github.com/bukhalo/nestjs-telegraf/edit/master/website/',
showLastUpdateAuthor: true,
showLastUpdateTime: true,
2020-09-09 23:17:31 +03:00
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};