use sass in vue projects
npm install --save-dev sass-loader style-loader css-loader
rules:[
{
test: /\.scss$/,
loaders: ["style", "css", "sass"]
},
]
installation always reports an error. I don"t know how sass is installed successfully in other projects. I execute the npm command in the project directory, so please let me know how to install it.