79406689

Date: 2025-02-02 13:37:49
Score: 1.5
Natty:
Report link

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 
        }
    }
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Abraham
  • Low reputation (1):
Posted by: Vijay Britto