Error with node-sass when running npm install
date
Jan 3, 2023
slug
error-when-npm-install-node-sass
status
Published
tags
Bugfix
Node.js
Webpack
summary
type
Post
Problem
I tried to install the tools for
Webpack
to turn sass into cssbut I got the error below:
Solution
There are two ways to fix that problem:
- Upgrade the
node-sass
version inpackage.json
file
I was using
Node v19.3.0
, and as per the release docs of node-sass
, I should upgrade the node-sass
version to support it.to be
- Install npm package
sass
instead
node-sass
has been deprecated. It has been transformed to the npm package sass
.We can remove
node-sass
dependency from package.json
file and install sass
: