diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-12-09 01:59:50 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-12-09 01:59:50 +0200 |
| commit | 4b817a5fc34162fb76914d6da5f8a4bb4deeb7de (patch) | |
| tree | fca94af8a7eca7727fbbce8f9ff6dd392c8dbbe0 /webpack.config.js | |
| parent | c941dd56db8a1e192e28ee4a99bea1e359cd9755 (diff) | |
Add bourbon styles
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 6 |
1 files changed, 4 insertions, 2 deletions
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 +}; |
