aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: baba61492796ceb8b04170f0e237622ef9a8cb9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const path = require('path');

module.exports = {
  entry: './src/client/react/index.js',
  output: {
    path: path.resolve(__dirname, 'src/client/static'),
    filename: 'bundle.js',
  },
  module: {
    rules: [
      {
        test: [/\.js$/],
        exclude: [/node_modules/],
        loader: 'babel-loader',
        options: { presets: ['es2015', 'react', 'stage-2'] },
      },
    ],
  },
};