Enable Concurrent Mode in in React for Gatsby projects.
gatsby-concurrent-modeThe 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
gatsby-concurrent-mode``bash`
yarn add gatsby-concurrent-mode
or
`bash`
npm install --save gatsby-concurrent-mode
In your gatsby-config.js file add this to your plugins::
`js``
module.exports = {
plugins: ['gatsby-concurrent-mode']
};