Skip to content

Commit

Permalink
bug symfony#638 sass-loader should not do css minification
Browse files Browse the repository at this point in the history
  • Loading branch information
wimhendrikx committed Sep 16, 2019
1 parent 5640271 commit ae5fea1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/loaders/sass.js
Expand Up @@ -41,7 +41,9 @@ module.exports = {

const config = Object.assign({}, {
// needed by the resolve-url-loader
sourceMap: (true === webpackConfig.sassOptions.resolveUrlLoader) || webpackConfig.useSourceMaps
sourceMap: (true === webpackConfig.sassOptions.resolveUrlLoader) || webpackConfig.useSourceMaps,
// CSS minification is handled with mini-css-extract-plugin
outputStyle: 'expanded'
});

sassLoaders.push({
Expand Down

0 comments on commit ae5fea1

Please sign in to comment.