1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- const path = require('path');
- module.exports = {
- title: 'Frigate',
- tagline: 'NVR With Realtime Object Detection for IP Cameras',
- url: 'https://docs.frigate.video',
- baseUrl: '/',
- onBrokenLinks: 'throw',
- onBrokenMarkdownLinks: 'warn',
- favicon: 'img/favicon.ico',
- organizationName: 'blakeblackshear',
- projectName: 'frigate',
- themeConfig: {
- algolia: {
- apiKey: '81ec882db78f7fed05c51daf973f0362',
- indexName: 'frigate',
- },
- navbar: {
- title: 'Frigate',
- logo: {
- alt: 'Frigate',
- src: 'img/logo.svg',
- srcDark: 'img/logo-dark.svg',
- },
- items: [
- {
- to: '/',
- activeBasePath: 'docs',
- label: 'Docs',
- position: 'left',
- },
- {
- href: 'https://frigate.video',
- label: 'Website',
- position: 'right',
- },
- {
- href: 'https://demo.frigate.video',
- label: 'Demo',
- position: 'right',
- },
- {
- href: 'https://github.com/blakeblackshear/frigate',
- label: 'GitHub',
- position: 'right',
- },
- ],
- },
- sidebarCollapsible: false,
- hideableSidebar: true,
- footer: {
- style: 'dark',
- links: [
- {
- title: 'Community',
- items: [
- {
- label: 'GitHub',
- href: 'https://github.com/blakeblackshear/frigate',
- },
- {
- label: 'Discussions',
- href: 'https://github.com/blakeblackshear/frigate/discussions',
- },
- ],
- },
- ],
- copyright: `Copyright © ${new Date().getFullYear()} Blake Blackshear`,
- },
- },
- plugins: [path.resolve(__dirname, 'plugins', 'raw-loader')],
- presets: [
- [
- '@docusaurus/preset-classic',
- {
- docs: {
- routeBasePath: '/',
- sidebarPath: require.resolve('./sidebars.js'),
- // Please change this to your repo.
- editUrl: 'https://github.com/blakeblackshear/frigate/edit/master/docs/',
- },
- theme: {
- customCss: require.resolve('./src/css/custom.css'),
- },
- },
- ],
- ],
- };
|