module.exports = { title: 'NestJS Telegraf', tagline: 'Powerful Nest module for easy and fast creation Telegram bots', url: 'https://nestjs-telegraf.vercel.app', baseUrl: '/', onBrokenLinks: 'throw', favicon: 'img/favicon.ico', organizationName: 'bukhalo', // Usually your GitHub org/user name. projectName: 'nestjs-telegraf', // Usually your repo name. themeConfig: { navbar: { title: 'NestJS Telegraf', // logo: { // alt: 'My Site Logo', // src: 'img/logo.svg', // }, items: [ { type: 'docsVersionDropdown', position: 'left', }, { to: 'docs/', activeBasePath: 'docs', label: 'Docs', position: 'left', }, // {to: 'blog', label: 'Blog', position: 'left'}, { href: 'https://github.com/bukhalo/nestjs-telegraf', label: 'GitHub', position: 'right', }, ], }, footer: { style: 'dark', // 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.`, }, }, presets: [ [ '@docusaurus/preset-classic', { docs: { sidebarPath: require.resolve('./sidebars.js'), // Please change this to your repo. editUrl: 'https://github.com/bukhalo/nestjs-telegraf/edit/master/website/', showLastUpdateAuthor: true, showLastUpdateTime: true, }, // blog: { // showReadingTime: true, // // Please change this to your repo. // editUrl: // 'https://github.com/bukhalo/nestjs-telegraf/edit/master/website/blog/', // }, theme: { customCss: require.resolve('./src/css/custom.css'), }, }, ], ], };