diff options
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 15f6956..87ad43b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -6,7 +6,9 @@ module.exports = { }, module: { loaders: [ - { test: /\.js$/, exclude: /node_modules/, loader: 'babel?presets[]=react,presets[]=es2015,presets[]=stage-0' } + { test: /\.js$/, exclude: /node_modules/, loader: 'babel?presets[]=react,presets[]=es2015,presets[]=stage-0' }, + { test: /\.css$/, loader: 'style!css' }, + { test: /\.scss$/, loader: 'style!css!sass' } ] } }
\ No newline at end of file |
