LoginSignup
18
7

More than 3 years have passed since last update.

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

Posted at

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 node-sass@4.14.1
# yarn
yarn remove node-sass
yarn add node-sass@4.14.1
18
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
7