123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- module.exports = {
- title: 'React Native Navigation',
- tagline: '',
- url: 'https://wix.github.io',
- baseUrl: '/react-native-navigation/',
- favicon: 'img/favicon.ico',
- organizationName: 'wix', // Usually your GitHub org/user name.
- projectName: 'react-native-navigation', // Usually your repo name.
- themeConfig: {
- prism: {
- // theme: require('prism-react-renderer/themes/vsDark'),
- theme: require('prism-react-renderer/themes/nightOwl'),
- // theme: require('prism-react-renderer/themes/dracula'),
- },
- navbar: {
- title: 'React Native Navigation',
- logo: {
- alt: 'React Native Navigation Logo',
- src: 'img/logo.png',
- },
- links: [
- {to: 'docs/before-you-start', label: 'Docs', position: 'left', activeBasePath: 'docs'},
- {to: 'api/component', label: 'API', position: 'left', activeBasePath: 'api'},
- {
- href: 'https://github.com/wix/react-native-navigation',
- label: 'GitHub',
- position: 'right',
- },
- ],
- },
- algolia: {
- apiKey: '6d8c985d9db80241d117497afe2a0e8c',
- indexName: 'wix_react-native-navigation'
- },
- sidebarCollapsible: false,
- footer: {
- style: 'dark',
- links: [
- {
- title: 'Docs',
- items: [
- {
- label: 'Installation',
- to: 'docs/installing',
- },
- {
- label: 'Basic Navigation',
- to: 'docs/basic-navigation',
- },
- {
- label: 'Contributing',
- to: 'docs/contributing',
- }
- ],
- },
- {
- title: 'Support',
- items: [
- {
- label: 'Ask a question on Stack Overflow',
- href: 'https://stackoverflow.com/questions/tagged/wix-react-native-navigation',
- },
- {
- label: 'Community chat on Discord',
- href: 'https://discord.gg/DhkZjq2',
- },
- {
- label: 'Submit on issue on GitHub',
- href: 'https://github.com/wix/react-native-navigation/issues/new/choose',
- }
- ],
- },
- {
- title: 'Social',
- items: [
- {
- label: 'GitHub',
- href: 'https://github.com/wix/react-native-navigation',
- },
- {
- label: 'Twitter',
- href: 'https://twitter.com/ReactNativeNav',
- },
- ],
- },
- ]
- },
- },
- presets: [
- [
- '@docusaurus/preset-classic',
- {
- docs: {
- sidebarPath: require.resolve('./sidebars.js'),
- routeBasePath: 'docs',
- path: 'docs',
- editUrl:
- 'https://github.com/wix/react-native-navigation/edit/master/website/docs'
- },
- theme: {
- customCss: require.resolve('./src/css/custom.css'),
- },
- },
- ],
- [
- '@docusaurus/preset-classic',
- {
- docs: {
- routeBasePath: 'api',
- path: 'api',
- sidebarPath: require.resolve('./sidebarsApi.js'),
- editUrl:
- 'https://github.com/wix/react-native-navigation/edit/master/website/docs'
- },
- theme: {
- customCss: require.resolve('./src/css/custom.css'),
- },
- },
- ]
- ],
- };
|