Answer the question
In order to leave comments, you need to log in
How to disable style minification in webpack?
This is the code in webpack.config.js
As a result of compilation, I get a minified version of styles.
module: {
rules: [{
test: /\.(sa|sc|c)ss$/,
use: [
'style-loader',
{
loader: MiniCssExtractPlugin.loader
},
{
loader: "css-loader"
},
{
loader: "postcss-loader",
options: {
config: {
path: './'
}
}
},
{
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