module.exports = { title: 'Chaos Mesh®', tagline: 'A Powerful Chaos Engineering Platform for Kubernetes', url: 'https://chaos-mesh.org', baseUrl: '/', favicon: 'img/favicon.ico', organizationName: 'chaos-mesh', // Usually your GitHub org/user name. projectName: 'chaos-mesh.github.io', // Usually your repo name. themeConfig: { image: 'img/logos/logo-mini.svg', algolia: { apiKey: '49739571d4f89670b12f39d5ad135f5a', indexName: 'chaos-mesh', }, googleAnalytics: { trackingID: 'UA-90760217-2', }, navbar: { hideOnScroll: true, title: 'Chaos Mesh®', logo: { alt: 'Chaos Mesh Logo', src: 'img/logos/logo-mini.svg', srcDark: 'img/logos/logo-mini-white.svg', }, items: [ { type: 'docsVersionDropdown', position: 'left', }, { to: 'docs', activeBasePath: 'docs', label: 'Documentation', }, { to: 'interactive-tutorial', label: 'Interactive Tutorial' }, { href: 'https://github.com/chaos-mesh/chaos-mesh', label: 'GitHub', position: 'right', }, { to: 'blog', activeBasePath: 'blog', label: 'Blog', position: 'right' }, { href: 'https://community.cncf.io/chaos-mesh-community/', label: 'Events', position: 'right', }, ], }, footer: { links: [ { title: 'Documentation', items: [ { label: 'Get Started', to: 'docs/get_started/get_started_on_kind', }, { label: 'User Guides', to: 'docs/user_guides/installation', }, ], }, { title: 'Community', items: [ { label: 'Twitter', href: 'https://twitter.com/chaos_mesh', }, { label: 'Slack (#project-chaos-mesh)', href: 'https://slack.cncf.io/', }, { label: 'Events', href: 'https://community.cncf.io/chaos-mesh-community/', }, ], }, { title: 'More', items: [ { label: 'GitHub', href: 'https://github.com/chaos-mesh/chaos-mesh', }, { label: 'Blog', to: 'blog', }, ], }, { title: 'Others', items: [ { html: 'Deploys by Netlify', }, ], }, ], copyright: `
© Chaos Mesh® Authors ${new Date().getFullYear()} | Documentation Distributed under CC-BY-4.0

© ${new Date().getFullYear()} The Linux Foundation. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our Trademark Usage page. `, }, prism: { theme: require('prism-react-renderer/themes/dracula'), }, }, onBrokenLinks: 'warn', presets: [ [ '@docusaurus/preset-classic', { docs: { sidebarPath: require.resolve('./sidebars.js'), // Please change this to your repo. editUrl: 'https://github.com/chaos-mesh/website/edit/master/', }, blog: { showReadingTime: true, // Please change this to your repo. editUrl: 'https://github.com/chaos-mesh/website/edit/master/', }, theme: { customCss: require.resolve('./src/styles/custom.css'), }, }, ], ], }