From 2d54f8c7a6ee92bc51dd26244517d18ee7958490 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Wed, 21 Mar 2018 15:32:21 +0100 Subject: Add scss back into the mix --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js index 573373c..6625f45 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -16,7 +16,7 @@ module.exports = { options: { presets: ['es2015', 'react', 'stage-2'] }, }, { - test: /\.css/, + test: /\.scss/, use: [ { loader: 'style-loader' }, { @@ -26,6 +26,7 @@ module.exports = { localIdentName: '[local]--[name]--[hash:base64:5]', }, }, + { loader: 'sass-loader' }, ], }, ], -- cgit v1.1