summaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: c52f8051a59d942cb618f5b048b7cf2f0d64c49e (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 }
    ]
  }
};