aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-03-21 15:32:21 +0100
committerNoah Loomans <noahloomans@gmail.com>2018-03-21 15:32:21 +0100
commit2d54f8c7a6ee92bc51dd26244517d18ee7958490 (patch)
treefbb1f1062e18c9a2ed626d7cde0234bdc5149b11 /webpack.config.js
parentb2e406c37d0241d132e6fa99cc1387c92a624e0b (diff)
Add scss back into the mix
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js3
1 files changed, 2 insertions, 1 deletions
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' },
],
},
],