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