From 4b817a5fc34162fb76914d6da5f8a4bb4deeb7de Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Wed, 9 Dec 2015 01:59:50 +0200 Subject: Add bourbon styles --- webpack.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js index bfdb909..7f27918 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,3 +1,5 @@ +var bourbon = require('node-bourbon').includePaths + module.exports = { entry: './index.js', output: { @@ -7,7 +9,7 @@ module.exports = { module: { loaders: [ { test: /\.js$/, loader: 'babel' }, - { test: /\.scss$/, loaders: ['style', 'css', 'sass'] } + { test: /\.scss$/, loader: 'style!css!sass?includePaths[]=' + bourbon } ] } -}; \ No newline at end of file +}; -- cgit v1.3.1