aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
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' },
],
},
],