@gorhom/docusaurus-react-native-plugin

1.0.1 • Public • Published

Docusaurus React Native Plugin

A plugin to enable React Native Web and Reanimated on Docusaurus.

Usage

Monorepo

in the file docusaurus.config.js add the following

...
plugins: [
  '@gorhom/docusaurus-react-native-plugin',
  {
    alias: {
      '{MY PACKAGE NAME}': path.resolve(
        __dirname,
        {MY PACKAGE PATH}
      ),
      'react-native-reanimated': path.resolve(
        __dirname,
        {REANIMATED PACKAGE PATH}
      ),
    },
  },
],
...

Standalone

you will need to install the following

yarn add react-native-web react-native-reanimated

then you will need to add the following in the file docusaurus.config.js

...
plugins: [
  '@gorhom/docusaurus-react-native-plugin',
  {
    alias: {
      '{MY PACKAGE NAME}': path.resolve(
        __dirname,
        {MY PACKAGE PATH}
      ),
      'react-native-reanimated': path.resolve(
        __dirname,
        'node_modules/react-native-reanimated'
      ),
    },
  },
],
...

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @gorhom/docusaurus-react-native-plugin

Weekly Downloads

133

Version

1.0.1

License

MIT

Unpacked Size

4.5 kB

Total Files

4

Last publish

Collaborators

  • gorhom