blob: 7f2791804aa6295ee458e216fb05cce6dcd02448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
var bourbon = require('node-bourbon').includePaths
module.exports = {
entry: './index.js',
output: {
path: __dirname,
filename: 'bundle.js'
},
module: {
loaders: [
{ test: /\.js$/, loader: 'babel' },
{ test: /\.scss$/, loader: 'style!css!sass?includePaths[]=' + bourbon }
]
}
};
|