2021-03-08 16:51:09 +01:00
|
|
|
const path = require('path');
|
|
|
|
|
2021-01-21 01:26:49 +01:00
|
|
|
module.exports = {
|
|
|
|
title: 'Frigate',
|
|
|
|
tagline: 'NVR With Realtime Object Detection for IP Cameras',
|
2021-09-26 19:27:01 +02:00
|
|
|
url: 'https://docs.frigate.video',
|
|
|
|
baseUrl: '/',
|
2021-01-21 01:26:49 +01:00
|
|
|
onBrokenLinks: 'throw',
|
|
|
|
onBrokenMarkdownLinks: 'warn',
|
|
|
|
favicon: 'img/favicon.ico',
|
|
|
|
organizationName: 'blakeblackshear',
|
|
|
|
projectName: 'frigate',
|
2023-11-16 02:23:44 +01:00
|
|
|
markdown: {
|
|
|
|
mermaid: true,
|
|
|
|
},
|
|
|
|
themes: ['@docusaurus/theme-mermaid'],
|
|
|
|
themeConfig: {
|
2021-01-26 04:13:33 +01:00
|
|
|
algolia: {
|
2022-11-08 04:14:29 +01:00
|
|
|
appId: 'WIURGBNBPY',
|
2023-04-17 14:14:06 +02:00
|
|
|
apiKey: 'd02cc0a6a61178b25da550212925226b',
|
2021-03-08 16:51:09 +01:00
|
|
|
indexName: 'frigate',
|
2021-01-26 04:13:33 +01:00
|
|
|
},
|
2022-11-08 04:14:29 +01:00
|
|
|
docs: {
|
|
|
|
sidebar: {
|
|
|
|
hideable: true,
|
|
|
|
}
|
|
|
|
},
|
2021-01-21 01:26:49 +01:00
|
|
|
navbar: {
|
|
|
|
title: 'Frigate',
|
|
|
|
logo: {
|
|
|
|
alt: 'Frigate',
|
|
|
|
src: 'img/logo.svg',
|
|
|
|
srcDark: 'img/logo-dark.svg',
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
to: '/',
|
|
|
|
activeBasePath: 'docs',
|
|
|
|
label: 'Docs',
|
|
|
|
position: 'left',
|
|
|
|
},
|
2021-10-23 16:41:32 +02:00
|
|
|
{
|
|
|
|
href: 'https://frigate.video',
|
|
|
|
label: 'Website',
|
|
|
|
position: 'right',
|
|
|
|
},
|
|
|
|
{
|
2022-11-05 15:25:19 +01:00
|
|
|
href: 'http://demo.frigate.video',
|
2021-10-23 16:41:32 +02:00
|
|
|
label: 'Demo',
|
|
|
|
position: 'right',
|
|
|
|
},
|
2021-01-21 01:26:49 +01:00
|
|
|
{
|
|
|
|
href: 'https://github.com/blakeblackshear/frigate',
|
|
|
|
label: 'GitHub',
|
|
|
|
position: 'right',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
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`,
|
|
|
|
},
|
|
|
|
},
|
2021-03-08 16:51:09 +01:00
|
|
|
plugins: [path.resolve(__dirname, 'plugins', 'raw-loader')],
|
2021-01-21 01:26:49 +01:00
|
|
|
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/',
|
2022-11-08 04:14:29 +01:00
|
|
|
sidebarCollapsible: false
|
2021-01-21 01:26:49 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
theme: {
|
|
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
};
|