From 5ccf055f3e1d6aa61b9bdb9e294065e407ea5e18 Mon Sep 17 00:00:00 2001 From: Douglas Date: Wed, 23 Aug 2017 10:40:47 -0430 Subject: [PATCH] Compile issues solved --- webpack.config.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index f9ac851..b412778 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -21,13 +21,7 @@ let common = { }, { test: /\.scss$/, - use: [{ - loader: "style-loader" // creates style nodes from JS strings - }, { - loader: "css-loader" // translates CSS into CommonJS - }, { - loader: "sass-loader" // compiles Sass to CSS - }] + loader: ExtractTextPlugin.extract("css-loader!sass-loader") } ] },