summaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: e9f9a7d8166250b706ccf676f413d0427299a9e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
  entry: './client/index.js',
  watch: true,
	devtool: 'cheap-source-map',
  output: {
    filename: './public/bundle.js'
  },
  module: {
    loaders: [
      { test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ },
      { test: /\.jsx$/, loader: 'babel-loader', exclude: /node_modules/ }
    ]
  },
}