mirror of
https://github.com/zhigang1992/react-native-hold-menu.git
synced 2026-06-15 18:38:03 +08:00
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
module.exports = {
|
|
title: 'React Native Hold Menu',
|
|
tagline:
|
|
'A performant, easy to use hold to open context menu for React Native powered by Reanimated.',
|
|
url: 'https://enesozturk.github.io',
|
|
baseUrl: '/react-native-hold-menu/',
|
|
onBrokenLinks: 'throw',
|
|
onBrokenMarkdownLinks: 'warn',
|
|
favicon: 'img/favicon.ico',
|
|
organizationName: 'enesozturk',
|
|
projectName: 'react-native-hold-menu',
|
|
themeConfig: {
|
|
twitterImage: 'img/og.png',
|
|
image: 'img/og.png',
|
|
navbar: {
|
|
title: 'React Native Hold Menu',
|
|
items: [
|
|
{
|
|
to: 'docs/',
|
|
activeBasePath: 'docs',
|
|
label: 'Docs',
|
|
position: 'left',
|
|
},
|
|
{
|
|
href: 'https://github.com/enesozturk/react-native-hold-menu',
|
|
label: 'GitHub',
|
|
position: 'right',
|
|
},
|
|
],
|
|
},
|
|
footer: {
|
|
style: 'dark',
|
|
},
|
|
},
|
|
presets: [
|
|
[
|
|
'@docusaurus/preset-classic',
|
|
{
|
|
docs: {
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
// Please change this to your repo.
|
|
editUrl:
|
|
'https://github.com/facebook/docusaurus/edit/master/website/',
|
|
},
|
|
theme: {
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|