https://github.com/nystudio107/gatsby-concurrent-mode
Enable Concurrent Mode in in React for Gatsby projects.
https://github.com/nystudio107/gatsby-concurrent-mode
Last synced: 11 months ago
JSON representation
Enable Concurrent Mode in in React for Gatsby projects.
- Host: GitHub
- URL: https://github.com/nystudio107/gatsby-concurrent-mode
- Owner: nystudio107
- License: mit
- Created: 2019-11-03T23:32:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-04T00:04:46.000Z (over 6 years ago)
- Last Synced: 2024-11-14T15:40:23.916Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 8
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - gatsby-concurrent-mode
README
# gatsby-concurrent-mode
## About `gatsby-concurrent-mode`
The `gatsby-concurrent-mode` plugin enables [Concurrent Mode](https://reactjs.org/docs/concurrent-mode-intro.html) in in React for Gatsby projects
This is based on [Wei's](https://twitter.com/wgao19) blog [Play with React Concurrent Mode with Your Gatsby Site](https://aworkinprogress.dev/play-concurrent-mode-with-your-gatsby-site/) with code from [Fredrik Höglund](https://twitter.com/EphemeralCircle)
## Installing `gatsby-concurrent-mode`
```bash
yarn add gatsby-concurrent-mode
```
or
```bash
npm install --save gatsby-concurrent-mode
```
## Using `gatsby-concurrent-mode`
In your `gatsby-config.js` file add this to your `plugins:`:
```js
module.exports = {
plugins: ['gatsby-concurrent-mode']
};
```