d3105fa207
* chore: Upgrade a lot of dependencies for `./` * chore: Upgrade a lot of dependencies for `./example` * chore: Upgrade a lot of dependencies for `./docs` * Use new `EventEmitter` syntax (`.remove()`) * Update Podfile.lock * docs: Use watch mode * docs: Replace all relative links with absolute * Fix all links * Update docusaurus.config.js * Upgrade docusaurus-plugin-typedoc to fix docs build * Update yarn.lock * Upgrade typescript to 4.4.3 * Fix error unknown * Update package.json * Upgrade typedoc * Upgrade a few more deps * Fix deprecated sidebar syntax * Update Gemfile.lock
34 lines
790 B
JavaScript
34 lines
790 B
JavaScript
module.exports = {
|
|
visionSidebar: {
|
|
Guides: [
|
|
'guides/setup',
|
|
'guides/devices',
|
|
'guides/lifecycle',
|
|
'guides/formats',
|
|
'guides/capturing',
|
|
'guides/frame-processors',
|
|
{
|
|
type: 'category',
|
|
label: 'Creating Frame Processor Plugins',
|
|
items: [
|
|
'guides/frame-processors-plugins-overview',
|
|
'guides/frame-processors-plugins-ios',
|
|
'guides/frame-processors-plugins-android',
|
|
'guides/frame-processors-plugins-final',
|
|
'guides/frame-processor-plugin-list'
|
|
]
|
|
},
|
|
'guides/zooming',
|
|
'guides/focusing',
|
|
'guides/errors',
|
|
'guides/troubleshooting',
|
|
],
|
|
API: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: 'api',
|
|
}
|
|
],
|
|
},
|
|
};
|