react-native-vision-camera/docs/docusaurus.config.js
2021-03-23 15:28:31 +01:00

137 lines
3.4 KiB
JavaScript

module.exports = {
title: 'VisionCamera',
tagline: '📸 The Camera library that sees the vision.',
url: 'https://cuvent.github.io',
baseUrl: '/react-native-vision-camera/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
favicon: './favicon.ico',
organizationName: 'cuvent',
projectName: 'react-native-vision-camera',
themeConfig: {
algolia: {
apiKey: 'ab7f44570bb62d0e07c0f7d92312ed1a',
indexName: 'react-native-vision-camera',
},
navbar: {
title: 'VisionCamera',
logo: {
alt: 'Logo',
src: './android-chrome-192x192.png',
},
items: [
{
label: 'Guides',
to: 'docs/guides',
position: 'left',
},
{
to: 'docs/api',
label: 'API',
position: 'left'
},
{
href: 'https://github.com/cuvent/react-native-vision-camera/tree/main/example',
label: 'Example App',
position: 'left'
},
{
href: 'https://github.com/cuvent/react-native-vision-camera',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Guides',
to: 'docs/guides'
},
{
label: 'API',
to: 'docs/api',
},
{
label: 'Example App',
href: 'https://github.com/cuvent/react-native-vision-camera/tree/main/example',
},
],
},
{
title: 'Community',
items: [
{
label: 'GitHub discussions',
href: 'https://github.com/cuvent/react-native-vision-camera/discussions',
},
{
label: 'Twitter (@mrousavy)',
href: 'https://twitter.com/mrousavy',
},
{
label: 'Twitter (@CuventTech)',
href: 'https://twitter.com/CuventTech',
},
],
},
{
title: 'More',
items: [
{
label: 'GitHub',
href: 'https://github.com/cuvent/react-native-vision-camera',
},
{
label: 'Cuvent',
href: 'https://cuvent.com',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Cuvent`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl:
'https://github.com/cuvent/react-native-vision-camera/edit/main/docs/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
plugins: [
[
'docusaurus-plugin-typedoc',
{
name: 'VisionCamera',
entryPoints: ['../src'],
exclude: "../src/index.ts",
tsconfig: '../tsconfig.docs.json',
excludePrivate: true,
excludeProtected: true,
excludeExternals: true,
excludeInternal: true,
readme: "none",
sidebar: {
sidebarFile: 'typedoc-sidebar.js',
fullNames: false,
indexLabel: 'Overview'
}
},
],
],
};