Gatsby.js 【Node Sass version 5.0.0 is incompatible with ^4.0.0.】 エラーの対処法


Gatsby.jsの下記エラーの対処法です。
【gatsby-plugin-sass】導入時に発生しました。

error Generating development JavaScript bundle failed 
Node Sass version 5.0.0 is incompatible with ^4.0.0.

node-sassのバージョンを下げることで解決

node-sassのバージョンを下げることで解決することができました。

# npm
npm uninstall node-sass
npm install [email protected]
# yarn
yarn remove node-sass
yarn add [email protected]