From 878d880510a648948cd2c624c429eb6839719aad Mon Sep 17 00:00:00 2001 From: Wim Hendrikx Date: Mon, 16 Sep 2019 17:01:30 +0200 Subject: [PATCH] bug #638 sass-loader should not do css minification --- lib/loaders/sass.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/loaders/sass.js b/lib/loaders/sass.js index 9f9858b2..d6b5acba 100644 --- a/lib/loaders/sass.js +++ b/lib/loaders/sass.js @@ -32,7 +32,8 @@ module.exports = { loader: 'resolve-url-loader', options: Object.assign( { - sourceMap: webpackConfig.useSourceMaps + sourceMap: webpackConfig.useSourceMaps, + outputStyle: 'nested' }, webpackConfig.sassOptions.resolveUrlLoaderOptions )