| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- module.exports = {
- title: 'Kilo',
- tagline: 'a multi-cloud network overlay built on WireGuard and designed for Kubernetes',
- url: 'https://kilo.squat.ai',
- baseUrl: '/',
- favicon: 'img/favicon.ico',
- organizationName: 'squat',
- projectName: 'kilo',
- themeConfig: {
- navbar: {
- title: 'Kilo',
- logo: {
- alt: 'Kilo',
- src: 'img/kilo.svg',
- },
- items: [
- {
- to: 'docs/introduction',
- activeBasePath: 'docs',
- label: 'Docs',
- position: 'left',
- },
- {
- href: 'https://github.com/squat/kilo',
- label: 'GitHub',
- position: 'right',
- },
- ],
- },
- footer: {
- style: 'dark',
- links: [
- {
- title: 'Docs',
- items: [
- {
- label: 'Introduction',
- to: 'docs/introduction',
- },
- {
- label: 'Topology',
- to: 'docs/topology',
- },
- {
- label: 'VPN',
- to: 'docs/vpn',
- },
- ],
- },
- {
- title: 'Social',
- items: [
- {
- label: 'GitHub',
- href: 'https://github.com/squat/kilo',
- },
- ],
- },
- ],
- },
- },
- presets: [
- [
- '@docusaurus/preset-classic',
- {
- docs: {
- sidebarPath: require.resolve('./sidebars.js'),
- editUrl:
- 'https://github.com/squat/kilo/edit/master/',
- },
- theme: {
- customCss: require.resolve('./src/css/custom.css'),
- },
- },
- ],
- ],
- };
|