module.exports = { title: 'FireCMS', tagline: 'Awesome Firestore based headless CMS, developed by Camberi', url: 'https://firecms.co', baseUrl: '/', onBrokenLinks: 'throw', onBrokenMarkdownLinks: 'warn', favicon: 'img/favicon.ico', organizationName: 'Camberi', projectName: 'FireCMS', plugins: [ 'docusaurus-plugin-sass', 'docusaurus-tailwindcss-loader', // [ // '@docusaurus/plugin-sitemap', // { // changefreq: 'weekly', // priority: 0.5, // trailingSlash: false // } // ] ], themeConfig: { navbar: { title: 'FireCMS', logo: { alt: 'FireCMS Logo', src: 'img/logo_small.png' }, items: [ { to: 'docs/', activeBasePath: 'docs', label: 'Docs', position: 'left' }, // { to: 'blog', label: 'Blog', position: 'left' }, { href: 'https://github.com/Camberi/firecms', // label: 'GitHub', className: 'header-github-link', 'aria-label': 'GitHub repository', position: 'right' } ] }, footer: { links: [ { // Label of the section of these links title: 'Docs', items: [ { label: 'Intro', to: 'docs/', }, ], }, { title: 'Community', items: [ { label: 'Reddit', href: 'https://www.reddit.com/r/firecms/', }, // { // label: 'Discord', // href: 'https://discordapp.com/invite/docusaurus', // }, // { // label: 'Twitter', // href: 'https://twitter.com/docusaurus', // }, // { // //Renders the html pass-through instead of a simple link // html: ` // // Deploys by Netlify // // `, // }, ], }, ], }, prism: { theme: require('prism-react-renderer/themes/vsDark'), }, }, presets: [ [ '@docusaurus/preset-classic', { docs: { sidebarPath: require.resolve('./sidebars.js') }, // blog: { // showReadingTime: true, // editUrl: // 'https://github.com/facebook/docusaurus/edit/master/website/blog/' // }, theme: { customCss: [ require.resolve('./src/css/custom.css'), ] } } ] ] }