2021-03-03 12:37:43 +01:00
module . exports = {
title : 'VisionCamera' ,
tagline : '📸 The Camera library that sees the vision.' ,
2023-03-08 09:26:24 +01:00
url : 'https://react-native-vision-camera.com' ,
2023-03-06 11:03:40 +01:00
baseUrl : '/' ,
2021-03-03 12:37:43 +01:00
onBrokenLinks : 'throw' ,
2021-03-23 15:28:31 +01:00
onBrokenMarkdownLinks : 'throw' ,
2023-03-16 13:22:59 -04:00
favicon : '/favicon.ico' ,
2021-06-21 22:42:46 +02:00
organizationName : 'mrousavy' ,
2021-03-03 12:37:43 +01:00
projectName : 'react-native-vision-camera' ,
themeConfig : {
2021-03-11 11:25:08 +01:00
algolia : {
2023-05-23 17:41:29 +02:00
appId : 'HBHXBT6T9E' ,
apiKey : '64bc77eda92b7efcb7003b56815f1113' ,
2021-03-11 11:25:08 +01:00
indexName : 'react-native-vision-camera' ,
} ,
2021-05-06 14:11:55 +02:00
prism : {
2021-06-27 12:37:54 +02:00
additionalLanguages : [ 'swift' , 'java' , 'kotlin' ] ,
2021-05-06 14:11:55 +02:00
} ,
2021-03-03 12:37:43 +01:00
navbar : {
title : 'VisionCamera' ,
logo : {
alt : 'Logo' ,
2021-03-04 18:14:07 +01:00
src : './android-chrome-192x192.png' ,
2021-03-03 12:37:43 +01:00
} ,
items : [
{
label : 'Guides' ,
2021-03-23 15:25:27 +01:00
to : 'docs/guides' ,
2021-03-03 12:37:43 +01:00
position : 'left' ,
} ,
{
to : 'docs/api' ,
label : 'API' ,
position : 'left'
} ,
2021-03-04 14:10:14 +01:00
{
2021-06-21 22:42:46 +02:00
href : 'https://github.com/mrousavy/react-native-vision-camera/tree/main/example' ,
2021-03-04 14:10:14 +01:00
label : 'Example App' ,
position : 'left'
} ,
2021-03-03 12:37:43 +01:00
{
2021-06-21 22:42:46 +02:00
href : 'https://github.com/mrousavy/react-native-vision-camera' ,
2021-03-03 12:37:43 +01:00
label : 'GitHub' ,
position : 'right' ,
} ,
] ,
} ,
footer : {
style : 'dark' ,
links : [
{
title : 'Docs' ,
items : [
{
label : 'Guides' ,
2021-03-23 15:25:27 +01:00
to : 'docs/guides'
2021-03-03 12:37:43 +01:00
} ,
{
label : 'API' ,
to : 'docs/api' ,
} ,
2021-03-04 14:14:04 +01:00
{
label : 'Example App' ,
2021-06-21 22:42:46 +02:00
href : 'https://github.com/mrousavy/react-native-vision-camera/tree/main/example' ,
2021-03-04 14:14:04 +01:00
} ,
2021-03-03 12:37:43 +01:00
] ,
} ,
{
title : 'Community' ,
items : [
{
label : 'GitHub discussions' ,
2021-06-21 22:42:46 +02:00
href : 'https://github.com/mrousavy/react-native-vision-camera/discussions' ,
2021-03-03 12:37:43 +01:00
} ,
{
2021-03-04 14:14:04 +01:00
label : 'Twitter (@mrousavy)' ,
2021-03-03 12:37:43 +01:00
href : 'https://twitter.com/mrousavy' ,
} ,
] ,
} ,
{
title : 'More' ,
items : [
{
label : 'GitHub' ,
2021-06-21 22:42:46 +02:00
href : 'https://github.com/mrousavy/react-native-vision-camera' ,
2021-03-03 12:37:43 +01:00
} ,
2021-03-05 10:59:55 +01:00
{
2021-06-21 22:42:46 +02:00
label : 'Marc\'s Portfolio' ,
2023-03-08 09:26:24 +01:00
href : 'https://mrousavy.com' ,
2021-03-05 10:59:55 +01:00
} ,
2021-03-03 12:37:43 +01:00
] ,
} ,
] ,
2021-06-21 22:42:46 +02:00
copyright : ` Copyright © ${ new Date ( ) . getFullYear ( ) } Marc Rousavy ` ,
2021-03-03 12:37:43 +01:00
} ,
2023-03-06 11:43:39 +01:00
image : 'img/11.png' ,
2023-03-06 11:25:44 +01:00
metadata : [
{
name : 'keywords' ,
content : 'documentation, coding, docs, guides, camera, react, native, react-native'
} ,
{
name : 'og:title' ,
content : 'VisionCamera Documentation'
} ,
{
name : 'og:type' ,
content : 'application'
} ,
{
name : 'og:description' ,
content : '📸 The Camera library that sees the vision.'
} ,
{
name : 'og:image' ,
2023-03-16 13:24:15 -04:00
content : '/img/11.png'
2023-03-06 11:25:44 +01:00
} ,
2023-03-08 12:11:03 +01:00
] ,
announcementBar : {
id : 'support_us' ,
content :
'<b>I am currently working on <a target="_blank" href="https://github.com/mrousavy/react-native-vision-camera/issues/1376">VisionCamera V3 ✨</a> which brings a lot of new features and a full rewrite on Android. Please consider <a target="_blank" href="https://github.com/sponsors/mrousavy">sponsoring me on GitHub</a> so I can work on this.</b>' ,
backgroundColor : '#ff5c5c' ,
textColor : '#ffffff' ,
isCloseable : false ,
} ,
2021-03-03 12:37:43 +01:00
} ,
presets : [
[
'@docusaurus/preset-classic' ,
{
2023-03-06 11:25:44 +01:00
sitemap : {
changefreq : 'weekly' ,
priority : 1.0 ,
ignorePatterns : [ '/tags/**' ] ,
filename : 'sitemap.xml' ,
} ,
2021-03-03 12:37:43 +01:00
docs : {
sidebarPath : require . resolve ( './sidebars.js' ) ,
2021-09-22 13:58:59 +02:00
editUrl : 'https://github.com/mrousavy/react-native-vision-camera/edit/main/docs/' ,
2021-03-03 12:37:43 +01:00
} ,
theme : {
customCss : require . resolve ( './src/css/custom.css' ) ,
} ,
2023-03-16 13:30:59 -04:00
gtag : {
trackingID : 'G-FX9Q0YKV7S' ,
anonymizeIP : false ,
} ,
2021-03-03 12:37:43 +01:00
} ,
] ,
] ,
plugins : [
[
'docusaurus-plugin-typedoc' ,
{
2021-03-07 14:16:11 +01:00
name : 'VisionCamera' ,
2021-03-03 12:37:43 +01:00
entryPoints : [ '../src' ] ,
2021-03-03 14:04:46 +01:00
exclude : "../src/index.ts" ,
2021-08-16 10:45:41 +02:00
tsconfig : '../tsconfig.json' ,
2021-09-22 13:58:59 +02:00
watch : process . env . TYPEDOC _WATCH ,
2021-03-07 14:16:11 +01:00
excludePrivate : true ,
excludeProtected : true ,
excludeExternals : true ,
2021-03-08 18:35:45 +01:00
excludeInternal : true ,
2021-03-03 12:37:43 +01:00
readme : "none" ,
sidebar : {
2021-03-03 21:20:20 +01:00
indexLabel : 'Overview'
}
2021-03-03 12:37:43 +01:00
} ,
] ,
] ,
} ;