/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ /** @type {import('@docusaurus/types').DocusaurusConfig} */ module.exports = { title: 'partiql-rs', tagline: 'The tagline of my site', url: 'https://partiql.vercel.app', baseUrl: '/', onBrokenLinks: 'throw', onBrokenMarkdownLinks: 'warn', favicon: 'img/favicon.ico', organizationName: 'fuyuatrow', projectName: 'partiql-rs', themeConfig: { navbar: { title: 'PartiQL-rs', logo: { alt: 'My Facebook Project Logo', src: 'img/logo.svg', }, items: [ { to: 'docs/', activeBasePath: 'docs', label: 'Docs', position: 'left', }, // {to: 'blog', label: 'Blog', position: 'left'}, // Please keep GitHub link to the right for consistency. { href: 'https://github.com/fuyutarow/partiql-rs', label: 'GitHub', position: 'right', }, ], }, footer: { style: 'dark', links: [ { title: 'Learn', items: [ { label: 'Style Guide', to: 'docs/', }, ], }, // { // title: 'Community', // items: [ // { // label: 'Stack Overflow', // href: 'https://stackoverflow.com/questions/tagged/docusaurus', // }, // { // label: 'Twitter', // href: 'https://twitter.com/docusaurus', // }, // { // label: 'Discord', // href: 'https://discordapp.com/invite/docusaurus', // }, // ], // }, // { // title: 'More', // items: [ // { // label: 'Blog', // to: 'blog', // }, // { // label: 'GitHub', // href: 'https://github.com/facebook/docusaurus', // }, // ], // }, // { // title: 'Legal', // // Please do not remove the privacy and terms, it's a legal requirement. // items: [ // { // label: 'Privacy', // href: 'https://opensource.facebook.com/legal/privacy/', // }, // { // label: 'Terms', // href: 'https://opensource.facebook.com/legal/terms/', // }, // { // label: 'Data Policy', // href: 'https://opensource.facebook.com/legal/data-policy/', // }, // { // label: 'Cookie Policy', // href: 'https://opensource.facebook.com/legal/cookie-policy/', // }, // ], // }, ], logo: { alt: 'Facebook Open Source Logo', src: 'img/oss_logo.png', href: 'https://opensource.facebook.com', }, // Please do not remove the credits, help to publicize Docusaurus :) copyright: `Copyright © ${new Date().getFullYear()} Facebook, 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'), }, }, ], ], };