-
Notifications
You must be signed in to change notification settings - Fork 878
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(doc): update doc dependencies
- Loading branch information
1 parent
54cd1a6
commit 6d37c44
Showing
26 changed files
with
3,974 additions
and
2,103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
import type { Config } from '@docusaurus/types'; | ||
import { themes as prismThemes } from 'prism-react-renderer'; | ||
|
||
export default { | ||
title: 'The React Native Boilerplate', | ||
tagline: 'Simple, Lightweight and Scalable.', | ||
url: 'https://thecodingmachine.github.io', | ||
baseUrl: '/react-native-boilerplate/', | ||
onBrokenLinks: 'throw', | ||
onBrokenMarkdownLinks: 'warn', | ||
favicon: 'img/TOM-small.webp', | ||
organizationName: 'thecodingmachine', | ||
projectName: 'react-native-boilerplate', | ||
i18n: { | ||
defaultLocale: 'en', | ||
locales: ['en'], | ||
}, | ||
plugins: [ | ||
async function myPlugin() { | ||
return { | ||
name: 'docusaurus-tailwindcss', | ||
configurePostCss(postcssOptions) { | ||
// eslint-disable-next-line global-require,import/no-extraneous-dependencies | ||
postcssOptions.plugins.push(require('tailwindcss')); | ||
// eslint-disable-next-line global-require,import/no-extraneous-dependencies | ||
postcssOptions.plugins.push(require('autoprefixer')); | ||
return postcssOptions; | ||
}, | ||
}; | ||
}, | ||
], | ||
presets: [ | ||
[ | ||
'classic', | ||
/** @type {import('@docusaurus/preset-classic').Options} */ | ||
({ | ||
docs: { | ||
sidebarPath: require.resolve('./sidebars.js'), | ||
editUrl: | ||
'https://github.com/thecodingmachine/react-native-boilerplate/edit/main/website-documentation/docs', | ||
}, | ||
blog: { | ||
showReadingTime: true, | ||
editUrl: | ||
'https://github.com/thecodingmachine/react-native-boilerplate/edit/main/website-documentation/blog', | ||
}, | ||
theme: { | ||
customCss: require.resolve('./src/css/custom.css'), | ||
}, | ||
}), | ||
], | ||
], | ||
|
||
themeConfig: { | ||
algolia: { | ||
appId: '9PEYN0H12D', | ||
indexName: 'rnboilerplate', | ||
apiKey: '983439b6ebef49ed3394ecfa290f1c6a', | ||
contextualSearch: true, | ||
}, | ||
colorMode: { | ||
defaultMode: 'dark', | ||
disableSwitch: false, | ||
respectPrefersColorScheme: false, | ||
}, | ||
navbar: { | ||
title: 'React Native Boilerplate', | ||
logo: { | ||
alt: 'octopus tentacle logo', | ||
src: 'img/TOM-small.webp', | ||
}, | ||
items: [ | ||
{ | ||
type: 'doc', | ||
docId: 'getting-started', | ||
position: 'left', | ||
label: 'Docs', | ||
}, | ||
{ to: '/blog', label: 'Blog', position: 'left' }, | ||
{ | ||
to: 'https://github.com/thecodingmachine/react-native-boilerplate', | ||
label: ' ', | ||
className: 'header-github-link group', | ||
position: 'right', | ||
}, | ||
], | ||
}, | ||
footer: { | ||
style: 'dark', | ||
links: [ | ||
{ | ||
title: 'Features', | ||
items: [ | ||
{ | ||
label: 'Javascript or TypeScript ? You choose !', | ||
to: '/docs/installation#using-the-boilerplate', | ||
}, | ||
{ | ||
label: 'Navigation', | ||
to: '/docs/navigate', | ||
}, | ||
{ | ||
label: 'Data fetching', | ||
to: '/docs/data-fetching', | ||
}, | ||
{ | ||
label: 'Internationalization', | ||
to: '/docs/internationalization', | ||
}, | ||
{ | ||
label: 'Multi theming', | ||
to: '/docs/theming/how-to-use', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'More', | ||
items: [ | ||
{ | ||
label: 'Blog', | ||
to: '/blog', | ||
}, | ||
{ | ||
label: 'GitHub', | ||
to: 'https://github.com/thecodingmachine/react-native-boilerplate', | ||
}, | ||
], | ||
}, | ||
], | ||
copyright: `Copyright © ${new Date().getFullYear()} React Native Boilerplate, by TheCodingMachine. Built with Docusaurus.`, | ||
}, | ||
prism: { | ||
theme: prismThemes.github, | ||
darkTheme: prismThemes.dracula, | ||
}, | ||
}, | ||
} satisfies Config; |
Oops, something went wrong.