robossembler.org/docusaurus.config.js

103 lines
2.6 KiB
JavaScript
Raw Normal View History

2021-04-02 14:38:59 +03:00
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: 'Robossembler',
2021-05-20 12:47:35 +03:00
tagline: 'Self Replicated Robotics Infrastructure Documentation',
url: 'https://robosphere.gitlab.io/robossembler-docs',
2021-04-02 11:58:43 +00:00
baseUrl: '/robossembler-docs/',
2021-04-02 14:38:59 +03:00
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'robossembler', // Usually your GitHub org/user name.
projectName: 'robossembler-docs', // Usually your repo name.
themeConfig: {
navbar: {
title: 'Robossembler',
logo: {
alt: 'Robossembler Logo',
src: 'img/logo.svg',
},
items: [
{
to: 'docs/',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
{to: 'blog', label: 'Blog', position: 'left'},
{
2021-05-20 12:47:35 +03:00
href: 'https://gitlab.com/robosphere/robossembler-docs',
label: 'GitLab',
2021-04-02 14:38:59 +03:00
position: 'right',
}
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
to: 'docs/',
},
],
},
{
title: 'Community',
items: [
{
label: 'Stack Overflow',
href: 'https://stackoverflow.com/questions/tagged/robossembler',
},
{
label: 'Discord',
2021-05-20 12:47:35 +03:00
href: 'https://discord.gg/fkvKMQ3XT4',
2021-04-02 14:38:59 +03:00
},
{
label: 'Twitter',
2021-05-20 12:47:35 +03:00
href: 'https://twitter.com/movefasta',
2021-04-02 14:38:59 +03:00
},
],
},
{
title: 'More',
items: [
{
label: 'Blog',
to: 'blog',
},
{
2021-05-20 12:47:35 +03:00
label: 'GitLab',
href: 'https://gitlab.com/robosphere',
2021-04-02 14:38:59 +03:00
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Robossembler Team, Built with Docusaurus.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl:
2021-05-20 12:47:35 +03:00
'https://gitlab.com/robosphere/robossembler-docs/-/edit/master/',
2021-04-02 14:38:59 +03:00
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl:
2021-05-20 12:47:35 +03:00
'https://gitlab.com/robosphere/robossembler-docs/-/edit/master/',
2021-04-02 14:38:59 +03:00
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};