mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-24 15:04:38 +03:00
105 lines
2.5 KiB
JavaScript
105 lines
2.5 KiB
JavaScript
|
module.exports = {
|
||
|
title: 'My Site',
|
||
|
tagline: 'The tagline of my site',
|
||
|
url: 'https://your-docusaurus-test-site.com',
|
||
|
baseUrl: '/',
|
||
|
onBrokenLinks: 'throw',
|
||
|
favicon: 'img/favicon.ico',
|
||
|
organizationName: 'facebook', // Usually your GitHub org/user name.
|
||
|
projectName: 'docusaurus', // Usually your repo name.
|
||
|
themeConfig: {
|
||
|
navbar: {
|
||
|
title: 'My Site',
|
||
|
logo: {
|
||
|
alt: 'My Site Logo',
|
||
|
src: 'img/logo.svg',
|
||
|
},
|
||
|
items: [
|
||
|
{
|
||
|
to: 'docs/',
|
||
|
activeBasePath: 'docs',
|
||
|
label: 'Docs',
|
||
|
position: 'left',
|
||
|
},
|
||
|
{to: 'blog', label: 'Blog', position: 'left'},
|
||
|
{
|
||
|
href: 'https://github.com/facebook/docusaurus',
|
||
|
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()} My Project, Inc. Built with Docusaurus.`,
|
||
|
},
|
||
|
},
|
||
|
presets: [
|
||
|
[
|
||
|
'@docusaurus/preset-classic',
|
||
|
{
|
||
|
docs: {
|
||
|
sidebarPath: require.resolve('./sidebars.js'),
|
||
|
// Please change this to your repo.
|
||
|
editUrl:
|
||
|
'https://github.com/facebook/docusaurus/edit/master/website/',
|
||
|
},
|
||
|
blog: {
|
||
|
showReadingTime: true,
|
||
|
// Please change this to your repo.
|
||
|
editUrl:
|
||
|
'https://github.com/facebook/docusaurus/edit/master/website/blog/',
|
||
|
},
|
||
|
theme: {
|
||
|
customCss: require.resolve('./src/css/custom.css'),
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
};
|