Answers for "webpack scss to css"

CSS
5

watch scss to css

sass --watch scss:css
Posted by: Guest on April-27-2020
0

webpack 5 compile scss to css file

module.exports = {
    module: {
        rules: [{
            test: /\.scss$/,
            use: [{
                loader: "sass-loader",
                options: {
                    minimize: true
                }
            }]
        }]
    }
};
Posted by: Guest on May-06-2022

Browse Popular Code Answers by Language