spee.ch/webpack.config.js
2018-01-08 17:06:31 -08:00

23 lines
417 B
JavaScript

const path = require('path');
module.exports = {
entry : './react/index.js',
output: {
path : path.join(__dirname, '/public/bundle/'),
filename: 'bundle.js',
},
watch : true,
module: {
loaders: [
{
test : /.jsx?$/,
loader : 'babel-loader',
exclude: /node_modules/,
query : {
presets: ['es2015', 'react'],
},
},
],
},
};