Answer the question
In order to leave comments, you need to log in
How to minify sass in webpack?
Please tell me I can’t understand what the problem is, the .css file is collected but not minified:
{
test: /\.scss$/,
use: isProd
? ExtractTextPlugin.extract({
fallback: 'vue-style-loader',
use: [
{
loader: 'css-loader',
options: { minimize: true }
},
'sass-loader'
],
})
: ['vue-style-loader', 'css-loader', 'sass-loader']
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question