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