gatsby-concurrent-mode
v1.0.0
Published
Enable Concurrent Mode in in React for Gatsby projects.
Downloads
1,377
Maintainers
Readme
gatsby-concurrent-mode
About gatsby-concurrent-mode
The gatsby-concurrent-mode
plugin enables Concurrent Mode in in React for Gatsby projects
This is based on Wei's blog Play with React Concurrent Mode with Your Gatsby Site with code from Fredrik Höglund
Installing gatsby-concurrent-mode
yarn add gatsby-concurrent-mode
or
npm install --save gatsby-concurrent-mode
Using gatsby-concurrent-mode
In your gatsby-config.js
file add this to your plugins:
:
module.exports = {
plugins: ['gatsby-concurrent-mode']
};