The answer by @Abraham is the correct one.
You should remove node-sass
However, to use sass
with your sass-loader
package, you should do the following change in your webpack config :
{
loader: "sass-loader",
options: {
implementation: require("sass") // <-- add this line
}
}